Re: Managing custom processor logging statements during JUnit testing

2020-03-10 Thread Russell Bateman
Profuse thanks, Andy. I will get back to confirm this. Something else came up in the meantime. On 3/9/20 1:35 PM, Andy LoPresto wrote: Russell, You can put a file called logback-test.xml in the src/test/resources/ directory of your custom processor module. This file is the same format as

Re: Managing custom processor logging statements during JUnit testing

2020-03-09 Thread Andy LoPresto
Russell, You can put a file called logback-test.xml in the src/test/resources/ directory of your custom processor module. This file is the same format as logback.xml but will supersede it for unit test execution. You can configure whatever level of logging severity and specificity in the same

Managing custom processor logging statements during JUnit testing

2020-03-06 Thread Russell Bateman
I'm interested in getting log statements that may occur from my *custom processor* code at the INFO, DEBUGand TRACElevels when running unit tests for it. This means that I would like to set (programmatically at runtime or by configuration) what I am used to setting in