File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1414
1515## Bug Fixes
1616
17- <!-- Here goes notable bug fixes that are worth a special mention or explanation -->
17+ * The merge by type class now uses the correct logger path.
Original file line number Diff line number Diff line change 1515from ._bg_service import MergeStrategy
1616from ._dispatch import Dispatch
1717
18+ _logger = logging .getLogger (__name__ )
19+
1820
1921def _hash_positive (args : Any ) -> int :
2022 """Make a positive hash."""
@@ -40,7 +42,7 @@ def filter(
4042 strategy's criteria are running.
4143 """
4244 if dispatch .started :
43- logging .debug ("Keeping start event %s" , dispatch .id )
45+ _logger .debug ("Keeping start event %s" , dispatch .id )
4446 return True
4547
4648 other_dispatches_running = any (
@@ -52,7 +54,7 @@ def filter(
5254 )
5355 )
5456
55- logging .debug (
57+ _logger .debug (
5658 "stop event %s because other_dispatches_running=%s" ,
5759 dispatch .id ,
5860 other_dispatches_running ,
You can’t perform that action at this time.
0 commit comments