[slf4j-user] Newbie: Change logging level programmatically?

2016-10-16 Thread Andrew P. Lentvorski
I'm clearly missing something obvious, but I absolutely cannot figure out how to change the logging level in either my build.gradle file or my actual Java code. I want DEBUG level, but I can't seem to find the right thing to twiddle. What am I missing? My build.gradle files has these

Re: [slf4j-user] Newbie: Change logging level programmatically?

2016-10-16 Thread Joachim Durchholz
Am 17.10.2016 um 01:31 schrieb Andrew P. Lentvorski: I'm clearly missing something obvious, but I absolutely cannot figure out how to change the logging level You do not configure SLF4J, you configure the backend you're using (logback, log4j, or whatever it is). These are typically

Re: [slf4j-user] Newbie: Change logging level programmatically?

2016-10-16 Thread Ceki Gulcu
Andrew mentioned that he was using slf4j-simple which is mostly a bare-bones implementation of the org.slf4j.Logger directing all output to System.err or System.out. See the following page for more details. http://www.slf4j.org/api/org/slf4j/impl/SimpleLogger.html HTH, On 10/17/2016 6:55,