Description
I would like to change the default log level of the bin/client shell.
I checked the Client Config and it is hardcoded to SimpleLogger.WARN
Could you please make it configurable via org.apache.karaf.shell.cfg ?
The patch is trivial:
{{{
level = Integer.parseInt(shellCfg.getProperty("logLevel", "1"));
}}}
Thanks