1
0
mirror of https://github.com/containous/traefik.git synced 2025-01-08 21:17:56 +03:00

Change traefik cmd error log to error level

This commit is contained in:
Tom Moulard 2022-12-07 11:34:06 +01:00 committed by GitHub
parent 8cf9385938
commit 6c75052a13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ Complete documentation is available at https://traefik.io`,
err = cli.Execute(cmdTraefik)
if err != nil {
stdlog.Println(err)
log.Error().Err(err).Msg("Command error")
logrus.Exit(1)
}