From f542582bfd214cc8a385fb83b54f2de0276d0270 Mon Sep 17 00:00:00 2001 From: Ben Donnelly Date: Wed, 20 Nov 2024 11:11:40 +0000 Subject: [PATCH 1/2] fix(logging): correct logging level in default config --- src/deep/logging/logging.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/deep/logging/logging.conf b/src/deep/logging/logging.conf index bf7c1c5..6290529 100644 --- a/src/deep/logging/logging.conf +++ b/src/deep/logging/logging.conf @@ -8,18 +8,18 @@ keys=consoleHandler keys=deepFormatter [logger_root] -level=DEBUG +level=INFO handlers=consoleHandler [logger_deep] -level=DEBUG +level=INFO handlers=consoleHandler qualname=deep propagate=0 [handler_consoleHandler] class=StreamHandler -level=DEBUG +level=INFO formatter=deepFormatter args=(sys.stdout,) From bafa86421603a9e694633d2fbbaf0d6b5520eb5b Mon Sep 17 00:00:00 2001 From: Ben Donnelly Date: Wed, 20 Nov 2024 11:14:10 +0000 Subject: [PATCH 2/2] chore(rel): update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56859f8..edda4fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # main (unreleased) +# 1.1.2 (20/11/2024) + +- **[BUGFIX]**: fix(logging): correct default log level [#65](https://github.com/intergral/deep/pull/65) [@Umaaz](https://github.com/Umaaz) + +# 1.1.1 (01/04/2024) + - **[FEATURE]**: feat(capture): add support for capture tracepoints [#34](https://github.com/intergral/deep/pull/34) [@Umaaz](https://github.com/Umaaz) - **[BUGFIX]**: fix(duration): snapshot duration not set [#37](https://github.com/intergral/deep/pull/37) [@Umaaz](https://github.com/Umaaz) - **[BUGFIX]**: fix(attributes): snapshot attributes not set [#38](https://github.com/intergral/deep/pull/38) [@Umaaz](https://github.com/Umaaz)