Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions coded-flows/coded_flows/utils/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ def __init__(
self.logger = logging.getLogger(name)
self.logger.setLevel(logging.DEBUG) # Set to DEBUG, handlers will filter

# Prevent propagation to root logger to avoid duplicate logs
self.logger.propagate = False

# Remove existing handlers to avoid duplicates
self.logger.handlers.clear()

Expand Down
2 changes: 1 addition & 1 deletion coded-flows/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "coded-flows"
version = "0.7.3"
version = "0.7.4"
description = "Various utilities for Coded Flows"
authors = ["COLOR CODED CODES <contact@colorcoded.codes>"]
readme = "README.md"
Expand Down