summaryrefslogtreecommitdiff
path: root/core/src/mill/util/Logger.scala
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/mill/util/Logger.scala')
-rw-r--r--core/src/mill/util/Logger.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/mill/util/Logger.scala b/core/src/mill/util/Logger.scala
index 55ea84cc..714b9add 100644
--- a/core/src/mill/util/Logger.scala
+++ b/core/src/mill/util/Logger.scala
@@ -136,7 +136,7 @@ case class FileLogger(colored: Boolean, file: Path) extends Logger {
def info(s: String) = outputStream.println(s)
def error(s: String) = outputStream.println(s)
def ticker(s: String) = outputStream.println(s)
- val inStream: InputStream = new ByteArrayInputStream(Array())
+ val inStream: InputStream = DummyInputStream
override def close() = {
if (outputStreamUsed)
outputStream.close()