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,7 @@
package datadog.trace.bootstrap.instrumentation.api;

import static datadog.trace.api.telemetry.LogCollector.EXCLUDE_TELEMETRY;

import datadog.trace.api.iast.util.PropagationUtils;
import java.net.MalformedURLException;
import java.net.URI;
Expand Down Expand Up @@ -129,7 +131,7 @@ public static URI safeParse(final String unparsed) {
try {
return PropagationUtils.onUriCreate(unparsed, URI.create(unparsed));
} catch (final IllegalArgumentException exception) {
LOGGER.debug("Unable to parse request uri {}", unparsed, exception);
LOGGER.debug(EXCLUDE_TELEMETRY, "Unable to parse request uri {}", unparsed, exception);
return null;
}
}
Expand Down