diff --git a/command/version.go b/command/version.go index 4c9a286b..09b142d9 100644 --- a/command/version.go +++ b/command/version.go @@ -5,7 +5,7 @@ import ( ) // Version is a const to have the latest version number for this code. -const Number string = "1.4.3" +const Number string = "1.4.4" // Build date and time when building. var BuildTime string diff --git a/common/log/log.go b/common/log/log.go index 6bd292fa..a7ce8ce1 100644 --- a/common/log/log.go +++ b/common/log/log.go @@ -29,12 +29,10 @@ func Configure() { if flag.Lookup("debug") != nil && flag.Lookup("debug").Value.(flag.Getter).Get().(bool) { logrus.SetLevel(logrus.DebugLevel) - logrus.Info("Enable debug mode") } if config.File.General.Debug { logrus.SetLevel(logrus.DebugLevel) - logrus.Info("Enable debug mode") } }