Add toString for AgentContextWrapper (#3193)
This commit is contained in:
parent
a78ed4c420
commit
858eb69abe
|
@ -220,5 +220,10 @@ public class AgentContextStorage implements ContextStorage, AutoCloseable {
|
|||
}
|
||||
return new AgentContextWrapper(agentContext, applicationContext.with(k1, v1));
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "{agentContext=" + agentContext + ", applicationContext=" + applicationContext + "}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue