From 9c9703efc41bda63dd339e3c7f335bc7068cf897 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 13 Jun 2022 17:13:21 -0400 Subject: [PATCH] Remove unnecessary construction of logging.Formatter in docs --- docs/logging.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/logging.rst b/docs/logging.rst index cb93bfb6b..8745fc1b6 100644 --- a/docs/logging.rst +++ b/docs/logging.rst @@ -60,7 +60,6 @@ More advanced setups are possible with the :mod:`logging` module. The example be maxBytes=32 * 1024 * 1024, # 32 MiB backupCount=5, # Rotate through 5 files ) - formatter = logging.Formatter() dt_fmt = '%Y-%m-%d %H:%M:%S' formatter = logging.Formatter('[{asctime}] [{levelname:<8}] {name}: {message}', dt_fmt, style='{') handler.setFormatter(formatter)