We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9af27c commit ba11257Copy full SHA for ba11257
dd-java-agent/agent-debugger/src/main/java/com/datadog/debugger/agent/ConfigurationUpdater.java
@@ -233,7 +233,8 @@ private void storeDebuggerDefinitions(ConfigurationComparer changes) {
233
public ProbeImplementation resolve(String encodedProbeId) {
234
ProbeDefinition definition = appliedDefinitions.get(encodedProbeId);
235
if (definition == null) {
236
- LOGGER.warn(SEND_TELEMETRY, "Cannot resolve probe id={}", encodedProbeId);
+ // The probe ID sent to telemetry to help troubleshoot. It isn't sensitive.
237
+ LOGGER.warn(SEND_TELEMETRY, "Cannot resolve probe id=" + encodedProbeId);
238
}
239
return definition;
240
0 commit comments