Add toString for AgentContextWrapper (#3193)

This commit is contained in:
Lauri Tulmin 2021-06-07 21:47:03 +03:00 committed by GitHub
parent a78ed4c420
commit 858eb69abe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -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 + "}";
}
}
}