We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8c43c6f + 2bad2ac commit c812020Copy full SHA for c812020
1 file changed
internal/log/init.go
@@ -6,14 +6,12 @@ import (
6
"github.com/sirupsen/logrus"
7
)
8
9
-
10
11
func init() {
12
logrus.SetFormatter(&logrus.TextFormatter{
13
- DisableColors: false,
+ DisableColors: false,
14
DisableTimestamp: false,
15
- FullTimestamp: true,
+ FullTimestamp: true,
16
})
17
- logrus.SetLevel(logrus.InfoLevel)
+ logrus.SetLevel(logrus.DebugLevel)
18
logrus.SetOutput(os.Stdout)
19
-}
+}
0 commit comments