summaryrefslogtreecommitdiff
path: root/main/core
diff options
context:
space:
mode:
authorTobias Roeser <le.petit.fou@web.de>2018-10-29 22:10:25 +0100
committerTobias Roeser <le.petit.fou@web.de>2018-10-30 09:31:42 +0100
commit93ffab54211c3150b4c3568d75519dc6426f6044 (patch)
tree109bd12e793d8e5c3b969b229db3ff712e1a85d3 /main/core
parentc92eb6f6f2c482e9fe838bc0f4de97d7c2c19646 (diff)
downloadmill-93ffab54211c3150b4c3568d75519dc6426f6044.tar.gz
mill-93ffab54211c3150b4c3568d75519dc6426f6044.tar.bz2
mill-93ffab54211c3150b4c3568d75519dc6426f6044.zip
Added new cmdline option --debug,-d to enable debug log
Diffstat (limited to 'main/core')
-rw-r--r--main/core/src/mill/util/Logger.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/core/src/mill/util/Logger.scala b/main/core/src/mill/util/Logger.scala
index 34981766..1db66039 100644
--- a/main/core/src/mill/util/Logger.scala
+++ b/main/core/src/mill/util/Logger.scala
@@ -138,7 +138,7 @@ case class PrintLogger(
def debug(s: String) = if (debugEnabled) {
printState = PrintState.Newline
- errStream.println(colors.info()(s))
+ errStream.println(s)
}
}