Browse Source

remove warn mentions

pull/1842/head
Anton Kaliaev 8 years ago
parent
commit
f4be75cb1e
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      log/filter.go

+ 2
- 2
log/filter.go View File

@ -56,12 +56,12 @@ func AllowAll() Option {
return AllowDebug() return AllowDebug()
} }
// AllowDebug allows error, warn, info and debug level log events to pass.
// AllowDebug allows error, info and debug level log events to pass.
func AllowDebug() Option { func AllowDebug() Option {
return allowed(levelError | levelInfo | levelDebug) return allowed(levelError | levelInfo | levelDebug)
} }
// AllowInfo allows error, warn and info level log events to pass.
// AllowInfo allows error and info level log events to pass.
func AllowInfo() Option { func AllowInfo() Option {
return allowed(levelError | levelInfo) return allowed(levelError | levelInfo)
} }


Loading…
Cancel
Save