Configure log level to info by default (#267)

Note: we log at INFO level by default until
we implement progress reporting to stdout/stderr.
This commit is contained in:
Pieter Noordhuis 2023-03-21 16:14:20 +01:00 committed by GitHub
parent 4ac2e33def
commit e7a7e5b95a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -25,7 +25,9 @@ type LogLevelFlag struct {
func NewLogLevelFlag() LogLevelFlag {
return LogLevelFlag{
l: log.LevelDisabled,
// Note: we log at INFO level by default until
// we implement progress reporting to stdout/stderr.
l: log.LevelInfo,
}
}