Hi, AFAIK Magnolia is using slf4j via log4j.
The warning you printed means slf4j is finding 2 backend implementations: logback and log4j. The fact you are getting thousands of DEBUG messages probably means it is picking the wrong backend. However, I would have thought that logback should have been excluded, and not log4j... Are you including any new modules or custom code which uses logback? Regards from Vienna, Richard > -----Ursprüngliche Nachricht----- > Von: [email protected] [mailto:dev-list-owner@magnolia- > cms.com] Im Auftrag von Gediminas Zalys (via Magnolia Forums) > Gesendet: Montag, 16. November 2015 10:44 > An: Magnolia Dev List > Betreff: [magnolia-dev] Re: Log4J issues > > I identified the issue was with another maven dependencies. > > Needed to add an exclusion like this to them : > > [code] <exclusions> > <exclusion> > <groupId>org.slf4j</groupId> > <artifactId>slf4j-log4j12</artifactId> > </exclusion> > <exclusion> > <groupId>log4j</groupId> > <artifactId>log4j</artifactId> > </exclusion> > </exclusions> [/code] > > -- > Context is everything: http://forum.magnolia- > cms.com/forum/thread.html?threadId=30ce3c0d-5f32-4698-865c- > e5fc58f36e09 > > > ---------------------------------------------------------------- > For list details, see: http://www.magnolia-cms.com/community/mailing- > lists.html > Alternatively, use our forums: http://forum.magnolia-cms.com/ To > unsubscribe, E-mail to: <[email protected]> > ---------------------------------------------------------------- ---------------------------------------------------------------- For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use our forums: http://forum.magnolia-cms.com/ To unsubscribe, E-mail to: <[email protected]> ----------------------------------------------------------------
