Write only to wrapper.log file?

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!

1 Like

Sure, just write directly to System.out instead, e.g.

System.out.println("This is my log message");
2 Likes

Very simple, thanks!