Is it possible to configure a logger from a Java library (like logback) so that it logs into separate windows in Eclipse?
I want to distinguish library printouts from my program printouts.
Is it possible to configure a logger from a Java library (like logback) so that it logs into separate windows in Eclipse?
I want to distinguish library printouts from my program printouts.
If the external library uses a different logging framework you can set it up to output to a file and then configure your loggers to output to a different file. Admittedly, it's a bit of a hack.