Is there any plugin or way around to group the log traces from each classes. Basically, I am working on creating multiple processes, and want to view the logs from each classes once at a time.
I am trying to look for some way or the other, but couldnt do it yet.
If it’s a Java project you can change the default
System.outwithSystem.setOutfor a custom implementation which buffers the output per thread but using loggers (SLF4J + Logback for example) usually is better solution.Logback also supports MDC.