Skip to content

Commit eacd9ae

Browse files
committed
include the where in toString() as well
1 parent ea365d3 commit eacd9ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dd-java-agent/agent-debugger/src/main/java/com/datadog/debugger/probe/CodeOriginProbe.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public int hashCode() {
119119
@Override
120120
public String toString() {
121121
return String.format(
122-
"CodeOriginProbe{probeId=%s, entrySpanProbe=%s, signature=%s, location=%s}",
123-
probeId, entrySpanProbe, signature, location);
122+
"CodeOriginProbe{probeId=%s, entrySpanProbe=%s, signature=%s, where=%s, location=%s}",
123+
probeId, entrySpanProbe, signature, where, location);
124124
}
125125
}

0 commit comments

Comments
 (0)