Skip to content

Commit

Permalink
[mac] Use logger.debug()instead of logger.info() (#774)
Browse files Browse the repository at this point in the history
Fixes #773.
  • Loading branch information
globau authored Mar 29, 2021
1 parent 331fd7c commit 5efb90e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Changelog

2021-0x-xx • `full history <https://github.com/gorakhargosh/watchdog/compare/v2.0.2...master>`__

-
- Thanks to our beloved contributors: @
- [mac] Use ``logger.debug()`` instead of ``logger.info()`` (`#774 <https://github.com/gorakhargosh/watchdog/pull/774>`_)
- Thanks to our beloved contributors: @globau


2.0.2
Expand Down
2 changes: 1 addition & 1 deletion src/watchdog/observers/fsevents.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def on_thread_stop(self):
self._watch = None

def queue_event(self, event):
logger.info("queue_event %s", event)
logger.debug("queue_event %s", event)
EventEmitter.queue_event(self, event)

def _queue_created_event(self, event, src_path, dirname):
Expand Down

0 comments on commit 5efb90e

Please sign in to comment.