From e4ecbec7a5969aab98bf7f27844a3a6f39465443 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Emmanuel=20BENO=C3=8ET?=
 <emmanuel.benoit@agrocampus-ouest.fr>
Date: Sun, 14 Feb 2021 10:44:28 +0100
Subject: [PATCH] Command line - Lower-case default for -L

---
 main.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.go b/main.go
index 1850c07..027e804 100644
--- a/main.go
+++ b/main.go
@@ -43,7 +43,7 @@ func parseCommandLine() cliFlags {
 	golf.StringVarP(&flags.logGraylog, 'g', "log-graylog", "", "Log to Graylog server (format: <host>:<port>).")
 	golf.BoolVarP(&help, 'h', "help", false, "Display command line help and exit.")
 	golf.StringVarP(&flags.instance, 'i', "instance", "", "Specify an instance identifier.")
-	golf.StringVarP(&flags.logLevel, 'L', "log-level", "INFO", "Log level to use.")
+	golf.StringVarP(&flags.logLevel, 'L', "log-level", "info", "Log level to use.")
 	golf.BoolVarP(&flags.quiet, 'q', "quiet", false, "Quiet mode; prevents logging to stderr.")
 
 	golf.Parse()