Disable colors when not in interactive terminal (#602) (#603)

Forcing colors in logrus causes color escapes sequences when logging to file or pipe.
This commit is contained in:
deso 2022-08-01 22:36:54 +02:00 committed by GitHub
parent 51ef9ea77f
commit 6ddee221e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ func ConfigureLogger(logLevel Level, formatType FormatType, logTimestamp bool) {
TimestampFormat: "2006-01-02 15:04:05",
FullTimestamp: true,
ForceFormatting: true,
ForceColors: true,
ForceColors: false,
QuoteEmptyFields: true,
DisableTimestamp: !logTimestamp}