I'am still working on a problem with the Http Builder in Java. The Builder is using a Log which is private. This Log is generated with the Logger Factory. On debugging I notice that the logger level is null and so the logs are not printed. On debugging I can change the logger level and the logs are printed. The Problem is that i can not set the Logger Level from outside of the HTTP Builder. So is it possible to set the Level of all Log property which are generated by the Log Factory ?
I managed to find a solution Just import
import ch.qos.logback.classic.Level
import ch.qos.logback.classic.Logger
And Set
Logger rootLogger = (Logger)LoggerFactory.getLogger(Logger.ROOT_LOGGER_NAME)
rootLogger.setLevel(mLevel)