From aa52f33d58f2c46c83ea8eb7da3a8232da02f929 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Mon, 27 Jan 2025 14:38:48 +0000 Subject: [PATCH] Fixup new logging --- app/logging.yaml | 4 ++-- app/logging_tester.py | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/app/logging.yaml b/app/logging.yaml index 99a7562..6b3398f 100644 --- a/app/logging.yaml +++ b/app/logging.yaml @@ -11,9 +11,9 @@ formatters: filters: leveltag: - (): newlogger.LevelTagFilter + (): log.LevelTagFilter category_filter: - (): newlogger.FunctionFilter + (): log.FunctionFilter functions: !!set fb: null diff --git a/app/logging_tester.py b/app/logging_tester.py index 5d5d505..10aca1d 100755 --- a/app/logging_tester.py +++ b/app/logging_tester.py @@ -1,5 +1,7 @@ #!/usr/bin/env python3 -from newlogger import log +from log import log + + # Testing def fa(): log.debug("fa Debug message")