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 4244da7 commit b0b0103Copy full SHA for b0b0103
sentry/src/main/java/io/sentry/util/LoggerPropertiesUtil.java
@@ -59,7 +59,7 @@ public static void applyPropertiesToAttributes(
59
for (final String key : targetKeys) {
60
final @Nullable String value = properties.get(key);
61
if (value != null) {
62
- attributes.add(SentryAttribute.stringAttribute(key, value));
+ attributes.add(SentryAttribute.stringAttribute("mdc." + key, value));
63
}
64
65
0 commit comments