Skip to content

Commit a69554e

Browse files
authored
Silence non-critical PayloadTagsProcessor parsing exception alert (#10263)
1 parent 88bafa2 commit a69554e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dd-trace-core/src/main/java/datadog/trace/core/tagprocessor/PayloadTagsProcessor.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package datadog.trace.core.tagprocessor;
22

3+
import static datadog.trace.api.telemetry.LogCollector.EXCLUDE_TELEMETRY;
34
import static datadog.trace.util.json.JsonPathParser.parseJsonPaths;
45

56
import datadog.trace.api.Config;
@@ -262,7 +263,8 @@ public boolean keepCollectingTags() {
262263

263264
@Override
264265
public void expandValueFailed(PathCursor path, Exception exception) {
265-
log.debug("Failed to expand value at path '{}'", path.toString(""), exception);
266+
log.debug(
267+
EXCLUDE_TELEMETRY, "Failed to expand value at path '{}'", path.toString(""), exception);
266268
}
267269
}
268270
}

0 commit comments

Comments
 (0)