File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1212- Properly sanitize the event context and SDK information (#1943 )
1313- Don't send error 429 as ` network_error ` (#1957 )
1414- Deprecate not needed option ` sdkInfo ` (#1960 )
15+ - Crash in profiling logger (#1964 )
1516
1617## 7.20.0
1718
Original file line number Diff line number Diff line change 3333 }
3434 va_list args;
3535 va_start (args, fmt);
36- va_end (args);
3736 const auto fmtStr = [[NSString alloc ] initWithUTF8String: fmt];
38- [SentryLog logWithMessage: [[NSString alloc ] initWithFormat: fmtStr arguments: args]
39- andLevel: sentryLevelFromLogLevel (level)];
37+ const auto msgStr = [[NSString alloc ] initWithFormat: fmtStr arguments: args];
38+ va_end (args);
39+ [SentryLog logWithMessage: msgStr andLevel: sentryLevelFromLogLevel (level)];
4040 }
4141
4242} // namespace profiling
You can’t perform that action at this time.
0 commit comments