Skip to content

Commit

Permalink
fix: Logging Info instead of Warning when skipping debug images (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsandfoxes authored Dec 30, 2022
1 parent 50d2208 commit 28a9a73
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

### Fixes

- Logging info instead of warning when skipping debug images ([#2101](https://github.com/getsentry/sentry-dotnet/pull/2101))

## 3.25.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion src/Sentry/Internal/DebugStackTrace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ private static void DemangleLambdaReturnType(SentryStackFrame frame)
// well, we are out of luck :-(
if (debugId == null)
{
_options.LogWarning("Skipping DebugImage for module '{0}' because DebugId couldn't be determined", module.Name);
_options.LogInfo("Skipping DebugImage for module '{0}' because DebugId couldn't be determined", module.Name);
_debugImageIndexByModule.Add(id, DebugImageMissing); // don't try to resolve again
return null;
}
Expand Down

0 comments on commit 28a9a73

Please sign in to comment.