Hello all,
I was wondering if there is any non-hacky way output the logs only to the current wrapper.log file, without showing the output to the gateway’s logs.
Thanks in advance!
Hello all,
I was wondering if there is any non-hacky way output the logs only to the current wrapper.log file, without showing the output to the gateway’s logs.
Thanks in advance!
Sure, just write directly to System.out
instead, e.g.
System.out.println("This is my log message");
Very simple, thanks!