Skip to content

Commit abe6f1c

Browse files
authored
Merge pull request #35 from Vaastav-Technologies/develop
Version update for release Releasing v.0.0.0dev12 This release consists of: ``` -Enable exception traceback on debug log level -Updated the version name. Previous main at: ec7e378 ```
2 parents 837e64a + ec7e378 commit abe6f1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "logician"
8-
version = "0.0.0.dev11"
8+
version = "0.0.0.dev12"
99
description = "Fully typed, simple, intuitive, sensible and pragmatic logger configurator for standard python logging."
1010
readme = "README.md"
1111
keywords = ["log", "logging", "logger"]

src/logician/stdlog/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
) # 5, previous level at 3 -> TRACEBACK; next level at 10 -> DEBUG
8383
TRACE_LOG_STR = "TRACE"
8484

85-
EXCEPTION_TRACEBACK_LOG_LEVEL = TRACE_LOG_LEVEL - 2 # 3, next level at 5 -> TRACEBACK
85+
EXCEPTION_TRACEBACK_LOG_LEVEL = logging.DEBUG + 1 # 11, next level at 20 -> INFO
8686
"""
8787
Exception traces should only be printed when the user really wants to dig deep into the code and hence should have
8888
very low log level

0 commit comments

Comments
 (0)