This commit is contained in:
Mark Harrah 2011-07-08 21:54:59 -04:00
parent 1d792c3601
commit 608ff76a17
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ object TestLogger
def debug(s: String) = log(Level.Debug, s)
def trace(t: Throwable) = logger.trace(t)
private def log(level: Level.Value, s: String) = logger.log(level, s)
def ansiCodesSupported() = true//logger.ansiCodesSupported
def ansiCodesSupported() = logger.ansiCodesSupported
}
}
final class TestLogging(val global: TLogger, val logTest: TestDefinition => ContentLogger)