Add a new line in the output of ipfs log level
License: MIT Signed-off-by: Michael Muré <mure.michael@gmail.com>
Michael Muré committed
Sep 27, 2015 at 18:54 UTC
f9af496ae88329341d6d21a3da2c4dd1c2e6222c
1 file changed
+1
-1
core/commands/log.go
+1
-1
@@ -58,7 +58,7 @@ output of a running daemon.
58
return
59
}
60
61
- s := fmt.Sprintf("Changed log level of '%s' to '%s'", subsystem, level)
61
+ s := fmt.Sprintf("Changed log level of '%s' to '%s'\n", subsystem, level)
62
log.Info(s)
63
res.SetOutput(&MessageOutput{s})
64
},