We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ba0de0 commit eddf9b3Copy full SHA for eddf9b3
wrappers/obj-c/ODWLogConfiguration.mm
@@ -311,8 +311,8 @@ -(nullable ILogConfiguration*)getWrappedConfiguration
311
+(nullable ODWLogConfiguration *)getLogConfigurationCopy
312
{
313
auto& config = LogManager::GetLogConfiguration();
314
- static ILogConfiguration configCopy(config);
315
- return [[ODWLogConfiguration alloc] initWithILogConfiguration: &configCopy];
+ auto configCopy = new ILogConfiguration(config);
+ return [[ODWLogConfiguration alloc] initWithILogConfiguration: configCopy];
316
}
317
318
+(void)setEventCollectorUri:(nonnull NSString *)eventCollectorUri
0 commit comments