From df049fe8f2328189ab548d0142d7feb54f8c831f Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Fri, 6 Apr 2018 09:06:41 +0100 Subject: [PATCH] Only output logo if logging in text mode --- cli/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/start.go b/cli/start.go index 13c214d4..9f858d85 100644 --- a/cli/start.go +++ b/cli/start.go @@ -31,7 +31,7 @@ var startCmd = &cobra.Command{ Short: "Start the database and http server", PreRun: func(cmd *cobra.Command, args []string) { - if opts.Logging.Output != "none" { + if opts.Logging.Output == "text" { fmt.Print(logo) }