We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98d895d commit 539e008Copy full SHA for 539e008
src/site/antora/modules/ROOT/pages/manual/thread-context.adoc
@@ -104,8 +104,8 @@ List<String> ndc = ThreadContext.getImmutableStack().asList(); // <1>
104
105
executor.submit(() -> {
106
try (CloseableThreadContext.Instance ignored = CloseableThreadContext
107
- .putAll(values) // <2>
108
- .pushAll(messages)) { // <2>
+ .putAll(mdc) // <2>
+ .pushAll(ndc)) { // <2>
109
110
LOGGER.debug("Processing for user started");
111
// ...
0 commit comments