mirror of https://github.com/sbt/sbt.git
Add a RESET at the front of the appendLog line
This commit is contained in:
parent
a09cd424f1
commit
e744985b6b
|
|
@ -362,7 +362,7 @@ class ConsoleAppender private[ConsoleAppender] (
|
|||
private def appendLog(labelColor: String, label: String, messageColor: String, message: String): Unit =
|
||||
out.lockObject.synchronized {
|
||||
message.lines.foreach { line =>
|
||||
val labeledLine = s"[${formatted(labelColor, label)}] ${formatted(messageColor, line)}"
|
||||
val labeledLine = s"$RESET[${formatted(labelColor, label)}] ${formatted(messageColor, line)}"
|
||||
writeLine(labeledLine)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue