We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 971a0fc commit e341f62Copy full SHA for e341f62
dd-trace-core/src/main/java/datadog/trace/core/DDSpanContext.java
@@ -427,6 +427,14 @@ public byte getResourceNamePriority() {
427
}
428
429
public void setResourceName(final CharSequence resourceName, byte priority) {
430
+ if (log.isDebugEnabled()) {
431
+ log.debug(
432
+ "setResourceName `{}`->`{}` with priority {}->{}",
433
+ this.resourceName,
434
+ resourceName,
435
+ resourceNamePriority,
436
+ priority);
437
+ }
438
if (null == resourceName) {
439
return;
440
0 commit comments