Please help me in the following issue.
I have a
tomcat running having three web context's in that.All the applications running in that context are using of log4j.All the applications have initialized (ie. configuration using PropertyConfigurator)the logging system individually.So when we take a instance of the Logger using
Logget myLogger = Logger.getLogger("myLogger"); Then how does log4j determines that which configuration file to follow.
As I think the implementation of LogManager should be a singleton.Then in one JVM there should be one instance of LogManager , so does it resolve this issue.