11 lines
275 B
C++
11 lines
275 B
C++
|
|
// Copyright (c) 2024 Sentry. All Rights Reserved.
|
|||
|
|
|
|||
|
|
#include "SentryTraceSampler.h"
|
|||
|
|
#include "SentrySamplingContext.h"
|
|||
|
|
|
|||
|
|
bool USentryTraceSampler::Sample_Implementation(USentrySamplingContext* samplingContext, float& samplingValue)
|
|||
|
|
{
|
|||
|
|
samplingValue = 1.0f;
|
|||
|
|
return true;
|
|||
|
|
}
|