Configure logs to show colors

This commit is contained in:
Priya Wadhwa 2018-08-29 16:07:21 -07:00
parent 49f92980d5
commit 15db85e36a
2 changed files with 6 additions and 3 deletions

View File

@ -48,7 +48,7 @@ func init() {
var RootCmd = &cobra.Command{
Use: "executor",
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
if err := util.SetLogLevel(logLevel); err != nil {
if err := util.ConfigureLogging(logLevel); err != nil {
return err
}
if !opts.NoPush && len(opts.Destinations) == 0 {

View File

@ -28,13 +28,16 @@ import (
"github.com/sirupsen/logrus"
)
// SetLogLevel sets the logrus logging level
func SetLogLevel(logLevel string) error {
// ConfigureLogging sets the logrus logging level and forces logs to be colorful (!)
func ConfigureLogging(logLevel string) error {
lvl, err := logrus.ParseLevel(logLevel)
if err != nil {
return errors.Wrap(err, "parsing log level")
}
logrus.SetLevel(lvl)
logrus.SetFormatter(&logrus.TextFormatter{
ForceColors: true,
})
return nil
}