Skip to content

Commit

Permalink
Reduce message emit log to DEBUG (#93)
Browse files Browse the repository at this point in the history
* Reduce message emit log to `DEBUG`

* Remove leftover unused `logging` import

---------

Co-authored-by: Daniel McKnight <[email protected]>
  • Loading branch information
NeonDaniel and NeonDaniel authored Dec 9, 2023
1 parent de1036d commit d630091
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion neon_mq_connector/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def send_message(self,
exchange=exchange,
exchange_type=exchange_type,
expiration=expiration)
LOG.info(f'Message propagated, id={msg_id}')
LOG.debug(f'Message propagated, id={msg_id}')
return msg_id

@retry(use_self=True, num_retries=__run_retries__)
Expand Down
1 change: 0 additions & 1 deletion neon_mq_connector/utils/client_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

import logging
import uuid

from threading import Event
Expand Down

0 comments on commit d630091

Please sign in to comment.