mirror of https://github.com/sbt/sbt.git
Remove unnecessary log line in thin client
When a batch command is run with the thin client, it logs an info message that the command completed. This is unnecessary given that completion is implied by the success or failure method that follows. It made the output look a little different in the thin client vs the console.
This commit is contained in:
parent
e5164cdf43
commit
583ad06aac
|
|
@ -492,7 +492,6 @@ class NetworkClient(
|
|||
val message = timing(startTime, now)
|
||||
val ec = exitCode
|
||||
if (batchMode.get || !attached.get) {
|
||||
console.appendLog(Level.Info, s"$name completed")
|
||||
if (ec == 0) console.success(message)
|
||||
else console.appendLog(Level.Error, message)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue