From dddce3f30d02dc29988da79e59b56f8bd38ae42e Mon Sep 17 00:00:00 2001 From: suoning <630571017@qq.com> Date: Mon, 15 May 2017 13:59:03 +0800 Subject: [PATCH] update logging, Remove the comments --- docs/sanic/logging.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/sanic/logging.md b/docs/sanic/logging.md index c416b9f8..fa1dc171 100644 --- a/docs/sanic/logging.md +++ b/docs/sanic/logging.md @@ -26,8 +26,6 @@ if __name__ == "__main__": app.run(log_config=LOGGING) ``` -After the program starts, it will log down all the information/requests in access.log and error.log in your working directory. - And to close logging, simply assign log_config=None: ```python