I'm starting a JVM programmatically with ProcessBuilder. For clarity let's call the JVM that uses ProcessBuilder JVM A and the one it starts JVM B. JVM B uses slf4j/log4j for logging.
The issue here is that the class I execute in JVM B is one that I sometimes run in a debugger, where it's helpful to have console output.
If I run JVM B with ProcessBuilder, however, then I don't want console output, because that requires JVM A to read the process's output or JVM B hangs.
Is there a way to control slf4j or log4j from within JVM B so that if my main class in JVM deems it's inappropriate to use a console for logging, it doesn't try to do so? (e.g. it disables console-based appenders) I would rather not have to maintain separate log4j.configuration files, although I'll do that if I need to do so.
e.g. in my main class
static {
if (shouldntUseConsole())
{
?????
}
}
I can figure out how to implement shouldntUseConsole(), but I don't know what to put for ?????.