diff --git a/cmd/root.go b/cmd/root.go index ad87e71e..b7920707 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -64,6 +64,12 @@ var RootCmd = &cobra.Command{ logrus.SetLevel(logrus.DebugLevel) } + // Disable the timestamp (Kompose is too fast!) + formatter := new(logrus.TextFormatter) + formatter.DisableTimestamp = true + formatter.ForceColors = true + logrus.SetFormatter(formatter) + // Set the appropriate suppress warnings and error on warning flags if GlobalSuppressWarnings { logrus.SetLevel(logrus.ErrorLevel)