From f4be75cb1e5fc7259195f2a2ae5f4b995847b9f5 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Fri, 5 May 2017 20:33:15 +0400 Subject: [PATCH] remove warn mentions --- log/filter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/log/filter.go b/log/filter.go index e7bec982..102e2d90 100644 --- a/log/filter.go +++ b/log/filter.go @@ -56,12 +56,12 @@ func AllowAll() Option { 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 { 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 { return allowed(levelError | levelInfo) }