Skip to content

Commit ba11257

Browse files
committed
Allow the prob id to be sent to the telemetry
1 parent b9af27c commit ba11257

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dd-java-agent/agent-debugger/src/main/java/com/datadog/debugger/agent/ConfigurationUpdater.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,8 @@ private void storeDebuggerDefinitions(ConfigurationComparer changes) {
233233
public ProbeImplementation resolve(String encodedProbeId) {
234234
ProbeDefinition definition = appliedDefinitions.get(encodedProbeId);
235235
if (definition == null) {
236-
LOGGER.warn(SEND_TELEMETRY, "Cannot resolve probe id={}", encodedProbeId);
236+
// The probe ID sent to telemetry to help troubleshoot. It isn't sensitive.
237+
LOGGER.warn(SEND_TELEMETRY, "Cannot resolve probe id=" + encodedProbeId);
237238
}
238239
return definition;
239240
}

0 commit comments

Comments
 (0)