Skip to content

fix: use logger instead of print() in events.py - #3965

Open
Quratulain-bilal wants to merge 1 commit into
github:mainfrom
Quratulain-bilal:fix/events-use-logger
Open

fix: use logger instead of print() in events.py#3965
Quratulain-bilal wants to merge 1 commit into
github:mainfrom
Quratulain-bilal:fix/events-use-logger

Conversation

@Quratulain-bilal

Copy link
Copy Markdown
Contributor

Problem

Three error/warning messages in events.py used print(..., file=sys.stderr) instead of the module's existing logger, bypassing logging configuration.

Fix

Replace print() calls with logger.error()/logger.warning() for consistent logging behavior.

…ts.py

Replace print(..., file=sys.stderr) calls with logger.error()/warning()
for consistent logging behavior. The module already defines
logger = logging.getLogger(__name__) and uses it elsewhere, but three
messages were using print() which bypasses logging configuration.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant