From 33c9d5aebc1b5419db852072f07e14de7705132e Mon Sep 17 00:00:00 2001 From: Simon Eskildsen Date: Sat, 26 Jul 2014 22:23:41 -0400 Subject: [PATCH] readme: fix levels --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 108fb75..e1ff807 100644 --- a/README.md +++ b/README.md @@ -191,10 +191,10 @@ that severity or anything above it: ```go // Will log anything that is info or above (warn, error, fatal, panic). Default. -log.Level = logrus.Info +log.Level = logrus.InfoLevel ``` -It may be useful to set `log.Level = logrus.Debug` in a debug or verbose +It may be useful to set `log.Level = logrus.DebugLevel` in a debug or verbose environment if your application has that. #### Entries