So I have the right implementation and it's getting called just fine, but there is no method LoggerFactory#getContext(String name)
..so how can it make any decisions if I can't pass anything in on which to make decisions upon?
There is a ContextSelector#getLoggerContext(String name)
but I dont have access to it?
So my point is: How can I make any sort of "selection" when I can't pass things into my selector or have any sort of access to the selector?
I need to have multiple contexts (with different configurations loaded obviously) from which I select at runtime according to my own logic.
I have found a solution to simply create LoggerContexts and configure them, but I just don't understand the point of this alternative mechanism then.