Todd Orr schrieb: > My logging implementation uses Spring for declariative configuration. > I've been trying to implement an slf4j adapter that delegates to my > implementation. However, since Spring uses JCL (I think) and projects > that already use jcl-over-sl4jf will load the SLF4J implementation I > get in an chicken/egg situation. I can't load my implementation since > Spring logs during its own initialization. This logging calls jcl, > which delegates to the slf4j implementation which makes everything > really messy. > > Does anyone have any ideas as to how I might circumvent this? > > Thanks, > T > _______________________________________________ > user mailing list > [email protected] > http://www.slf4j.org/mailman/listinfo/user > > todd, are you using it in an OSGI environment ? then you can start the bundle with your implementation with a lower start-level and jcl-over-slf4j will use your slf4j impl. I'm running logback as slf4j implementation and am also using bundles with jcl-over-slf4j, log4j-over-slf4j and jul-to-slf4j
if you're not under OSGI then I cannot help you ekke _______________________________________________ user mailing list [email protected] http://www.slf4j.org/mailman/listinfo/user
