use of ch.qos.logback.classic.Logger in project Alpha by alpha-asp.
the class RacksTest method enableTracing.
/**
* Sets the logging level to TRACE. Useful for debugging; call at beginning of test case.
*/
private static void enableTracing() {
Logger root = (Logger) LoggerFactory.getLogger(Logger.ROOT_LOGGER_NAME);
root.setLevel(ch.qos.logback.classic.Level.TRACE);
}
use of ch.qos.logback.classic.Logger in project Alpha by alpha-asp.
the class ThreeColouringRandomGraphTest method enableTracing.
/**
* Sets the logging level to TRACE. Useful for debugging; call at beginning of test case.
*/
private static void enableTracing() {
Logger root = (Logger) LoggerFactory.getLogger(Logger.ROOT_LOGGER_NAME);
root.setLevel(ch.qos.logback.classic.Level.TRACE);
}
use of ch.qos.logback.classic.Logger in project Alpha by alpha-asp.
the class ThreeColouringRandomGraphTest method enableDebugLog.
private static void enableDebugLog() {
Logger root = (Logger) LoggerFactory.getLogger(Logger.ROOT_LOGGER_NAME);
root.setLevel(Level.DEBUG);
}
use of ch.qos.logback.classic.Logger in project Alpha by alpha-asp.
the class ThreeColouringTestWithRandom method enableTracing.
/**
* Sets the logging level to TRACE. Useful for debugging; call at beginning of test case.
*/
private static void enableTracing() {
Logger root = (Logger) LoggerFactory.getLogger(Logger.ROOT_LOGGER_NAME);
root.setLevel(ch.qos.logback.classic.Level.TRACE);
}
use of ch.qos.logback.classic.Logger in project Alpha by alpha-asp.
the class ThreeColouringWheelTest method enableTracing.
/**
* Sets the logging level to TRACE. Useful for debugging; call at beginning of test case.
*/
private static void enableTracing() {
Logger root = (Logger) LoggerFactory.getLogger(Logger.ROOT_LOGGER_NAME);
root.setLevel(ch.qos.logback.classic.Level.TRACE);
}
Aggregations