Re: looking for source

2016-11-04 Thread Nicholas Duane
Thanks for the replies. Let me ask a more pointed question now as rummaging through the source will probably take me hours. I'm curious about the overloads with the throwable, for instance: logger.error("some message", ); What's the expected behavior? Meaning, what is the logging

Re: looking for source

2016-11-04 Thread Remko Popma
Sure. Start in AbstractLogger in the API module: https://github.com/apache/logging-log4j2/blob/master/log4j-api/src/main/java/org/apache/logging/log4j/spi/AbstractLogger.java and at some point you probably also want to look at the concrete subclass Logger in the core module:

Re: looking for source

2016-11-04 Thread Apostolis Giannakidis
Hi, The code is available in Github and you can clone it: https://github.com/apache/logging-log4j2/blob/f3e876a0fefd5d77c6f278b073bfa15df7971c44/log4j-api/src/main/java/org/apache/logging/log4j/spi/AbstractLogger.java On Fri, Nov 4, 2016 at 2:32 PM, Matt Sicker wrote: >