No, I meant that MDC.putAll(Map<String, String> entries) would be a nice method to have, though it's trivial to emulate with entries.forEach(MDC::put) so it's just a nice-to-have, whereas MDC.putAllClosable(Map<String, String> entries) is not possible to do without implementing a wrapping Closeable.
|