readme: fix levels

This commit is contained in:
Simon Eskildsen 2014-07-26 22:23:41 -04:00
parent 2c0db7c868
commit 33c9d5aebc
1 changed files with 2 additions and 2 deletions

View File

@ -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