From f9af496ae88329341d6d21a3da2c4dd1c2e6222c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Sun, 27 Sep 2015 18:54:45 +0200 Subject: [PATCH] Add a new line in the output of ipfs log level MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit License: MIT Signed-off-by: Michael Muré --- core/commands/log.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/commands/log.go b/core/commands/log.go index 28f2b3c6e..945185127 100644 --- a/core/commands/log.go +++ b/core/commands/log.go @@ -58,7 +58,7 @@ output of a running daemon. return } - s := fmt.Sprintf("Changed log level of '%s' to '%s'", subsystem, level) + s := fmt.Sprintf("Changed log level of '%s' to '%s'\n", subsystem, level) log.Info(s) res.SetOutput(&MessageOutput{s}) },