@@ -217,15 +217,15 @@ USentryId* USentrySubsystem::CaptureMessage(const FString& Message, ESentryLevel
217
217
218
218
USentryId* USentrySubsystem::CaptureMessageWithScope (const FString& Message, const FConfigureScopeDelegate& OnConfigureScope, ESentryLevel Level)
219
219
{
220
- return CaptureMessageWithScope (Message, FConfigureScopeNativeDelegate::CreateUFunction (const_cast <UObject*>(OnConfigureScope.GetUObject ()), OnConfigureScope.GetFunctionName ()), Level);
220
+ return CaptureMessageWithScope (Message, FConfigureScopeNativeDelegate::CreateUFunction (const_cast <UObject*>(OnConfigureScope.GetUObject ()), OnConfigureScope.GetFunctionName ()), Level);
221
221
}
222
222
223
223
USentryId* USentrySubsystem::CaptureMessageWithScope (const FString& Message, const FConfigureScopeNativeDelegate& OnConfigureScope, ESentryLevel Level)
224
224
{
225
225
if (!SubsystemNativeImpl || !SubsystemNativeImpl->IsEnabled ())
226
226
return nullptr ;
227
227
228
- return SubsystemNativeImpl->CaptureMessageWithScope (Message, OnConfigureScope, Level);
228
+ return SubsystemNativeImpl->CaptureMessageWithScope (Message, OnConfigureScope, Level);
229
229
}
230
230
231
231
USentryId* USentrySubsystem::CaptureEvent (USentryEvent* Event)
@@ -238,15 +238,15 @@ USentryId* USentrySubsystem::CaptureEvent(USentryEvent* Event)
238
238
239
239
USentryId* USentrySubsystem::CaptureEventWithScope (USentryEvent* Event, const FConfigureScopeDelegate& OnConfigureScope)
240
240
{
241
- return CaptureEventWithScope (Event, FConfigureScopeNativeDelegate::CreateUFunction (const_cast <UObject*>(OnConfigureScope.GetUObject ()), OnConfigureScope.GetFunctionName ()));
241
+ return CaptureEventWithScope (Event, FConfigureScopeNativeDelegate::CreateUFunction (const_cast <UObject*>(OnConfigureScope.GetUObject ()), OnConfigureScope.GetFunctionName ()));
242
242
}
243
243
244
244
USentryId* USentrySubsystem::CaptureEventWithScope (USentryEvent* Event, const FConfigureScopeNativeDelegate& OnConfigureScope)
245
245
{
246
246
if (!SubsystemNativeImpl || !SubsystemNativeImpl->IsEnabled ())
247
247
return nullptr ;
248
248
249
- return SubsystemNativeImpl->CaptureEventWithScope (Event, OnConfigureScope);
249
+ return SubsystemNativeImpl->CaptureEventWithScope (Event, OnConfigureScope);
250
250
}
251
251
252
252
void USentrySubsystem::CaptureUserFeedback (USentryUserFeedback* UserFeedback)
@@ -286,15 +286,15 @@ void USentrySubsystem::RemoveUser()
286
286
287
287
void USentrySubsystem::ConfigureScope (const FConfigureScopeDelegate& OnConfigureScope)
288
288
{
289
- ConfigureScope (FConfigureScopeNativeDelegate::CreateUFunction (const_cast <UObject*>(OnConfigureScope.GetUObject ()), OnConfigureScope.GetFunctionName ()));
289
+ ConfigureScope (FConfigureScopeNativeDelegate::CreateUFunction (const_cast <UObject*>(OnConfigureScope.GetUObject ()), OnConfigureScope.GetFunctionName ()));
290
290
}
291
291
292
292
void USentrySubsystem::ConfigureScope (const FConfigureScopeNativeDelegate& OnConfigureScope)
293
293
{
294
294
if (!SubsystemNativeImpl || !SubsystemNativeImpl->IsEnabled ())
295
295
return ;
296
296
297
- SubsystemNativeImpl->ConfigureScope (OnConfigureScope);
297
+ SubsystemNativeImpl->ConfigureScope (OnConfigureScope);
298
298
}
299
299
300
300
void USentrySubsystem::SetContext (const FString& Key, const TMap<FString, FString>& Values)
0 commit comments