This commit is contained in:
Dan Finneran
2025-02-05 09:38:20 +00:00
parent e1481db95c
commit 99e1fb3fc6
2 changed files with 1 additions and 5 deletions

View File

@@ -19,10 +19,6 @@ func ParseEnvironment(c *Config) error {
}
// Ensure that logging is set through the environment variables
env := os.Getenv(vipLogLevel)
// Set default value
if env == "" {
env = "4"
}
if env != "" {
logLevel, err := strconv.ParseInt(env, 10, 32)