This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/cmd/dagger/logger/logger.go
Andrea Luzzardi dd1bf18ec2 logger: TTY logs support (live update)
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
2021-10-05 15:38:34 -07:00

54 lines
1003 B
Go

// Logger utilities for the CLI
//
// These utilities rely on command line flags to set up the logger, therefore
// they are tightly coupled with the CLI and should not be used outside.
package logger
import (
"fmt"
"os"
"github.com/rs/zerolog"
"github.com/spf13/viper"
"golang.org/x/term"
)
func New() zerolog.Logger {
logger := zerolog.
New(os.Stderr).
With().
Timestamp().
Logger()
if !jsonLogs() {
logger = logger.Output(&PlainOutput{Out: os.Stderr})
} else {
logger = logger.With().Timestamp().Caller().Logger()
}
level := viper.GetString("log-level")
lvl, err := zerolog.ParseLevel(level)
if err != nil {
panic(err)
}
return logger.Level(lvl)
}
func jsonLogs() bool {
switch f := viper.GetString("log-format"); f {
case "json":
return true
case "plain":
return false
case "tty":
return false
case "auto":
return !term.IsTerminal(int(os.Stdout.Fd()))
default:
fmt.Fprintf(os.Stderr, "invalid --log-format %q\n", f)
os.Exit(1)
}
return false
}