Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package datadog.trace.core.tagprocessor;

import static datadog.trace.api.telemetry.LogCollector.EXCLUDE_TELEMETRY;
import static datadog.trace.util.json.JsonPathParser.parseJsonPaths;

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

@Override
public void expandValueFailed(PathCursor path, Exception exception) {
log.debug("Failed to expand value at path '{}'", path.toString(""), exception);
log.debug(
EXCLUDE_TELEMETRY, "Failed to expand value at path '{}'", path.toString(""), exception);
}
}
}