jasonrbriggs / stomp.py

“stomp.py” is a Python client library for accessing messaging servers (such as ActiveMQ or RabbitMQ) using the STOMP protocol (versions 1.0, 1.1 and 1.2). It can also be run as a standalone, command-line client for testing.
Apache License 2.0
493 stars 166 forks source link

Convert listener/transport log records to debug level #401

Closed amaltaro closed 2 years ago

amaltaro commented 2 years ago

Fixes #400

This PR changes many of the logging.info records to logging.debug, in both listener and transport modules.

Compared to version 7.0.0, this branch seems to have many more info log records, so it might be that some of those should really remain with the level INFO.

Another option would be to have an API to update the stomp log level to WARNING and silent these info/debug records. Could the developers please see what's reasonable here? Thanks

mfmarche commented 2 years ago

thanks @amaltaro just noticed you did the same thing I just did :)

Hopefully this is accepted.