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:
Ethan Atkins 2020-11-05 10:12:26 -08:00
parent e5164cdf43
commit 583ad06aac
1 changed files with 0 additions and 1 deletions

View File

@ -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)
}