disable colors on hook example

This commit is contained in:
David Bariod 2018-10-15 21:32:20 +02:00
parent f2ab87f230
commit 9c7692ccff
1 changed files with 1 additions and 2 deletions

View File

@ -24,8 +24,7 @@ func (h *GlobalHook) Fire(e *logrus.Entry) error {
func Example() {
l := logrus.New()
l.Out = os.Stdout
l.Formatter = &logrus.TextFormatter{DisableTimestamp: true}
l.Formatter.(*logrus.TextFormatter).DisableTimestamp = true
l.Formatter = &logrus.TextFormatter{DisableTimestamp: true, DisableColors: true}
l.AddHook(&GlobalHook{})
mystring = "first value"
l.Info("first log")