mirror of https://github.com/databricks/cli.git
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:
parent
4ac2e33def
commit
e7a7e5b95a
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue