From a27471178a849976ec0a9216a9c138482ae65f28 Mon Sep 17 00:00:00 2001 From: suoning <630571017@qq.com> Date: Mon, 15 May 2017 10:25:19 +0800 Subject: [PATCH] update logger doc --- docs/sanic/logging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanic/logging.md b/docs/sanic/logging.md index 0fd9c75c..332d805f 100644 --- a/docs/sanic/logging.md +++ b/docs/sanic/logging.md @@ -14,7 +14,7 @@ from sanic.config import LOGGING # The default logging handlers are ['accessStream', 'errorStream'] # but we change it to use other handlers here for demo purpose LOGGING['loggers']['network']['handlers'] = [ - 'accessTimedRotatingFile', 'errorTimedRotationgFile'] + 'accessTimedRotatingFile', 'errorTimedRotatingFile'] app = Sanic('test')