From fc29744db8eba827802bdb5c5932f91ae79ea152 Mon Sep 17 00:00:00 2001 From: Stas Medvedev Date: Tue, 11 Jun 2024 02:13:28 +0300 Subject: =?UTF-8?q?=D1=80=D0=B5=D0=B0=D0=BB=D1=8C=D0=BD=D1=8B=D0=B9=20ip?= =?UTF-8?q?=20=D0=B8=D0=B7=20=D0=BF=D0=BE=D0=B4=20=D0=BF=D1=80=D0=BE=D0=BA?= =?UTF-8?q?=D1=81=D0=B8=20=D1=85=D0=B5=D0=B4=D0=B5=D1=80=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/logging.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/logging.py') diff --git a/app/logging.py b/app/logging.py index e24328d..de5fb56 100644 --- a/app/logging.py +++ b/app/logging.py @@ -3,7 +3,7 @@ import logging class RequestFileHandler(logging.FileHandler): def __init__(self) -> None: - super().__init__('./static/request.log') + super().__init__("./static/request.log") -logger = logging.getLogger('app.request') +logger = logging.getLogger("app.request") -- cgit v1.2.3