I am basically trying to add MDC support in java.util.logging framework without using any slf4j to JUL bridge alternative. In the Javadoc of BasicMDCAdapter it is mentioned that "Basic MDC implementation, which can be used with logging systems that lack out-of-the-box MDC support".
I can't seem to find any sample which can help me in same. Can anyone tell me how can I take advantage of BasicMDCAdapter class to add MDC support in JUL.
Any help will be appreciated.