rules: improve debug message for rule evaluation

This commit is contained in:
Peter F. Patel-Schneider 2025-11-02 15:37:10 +09:00
parent e906b83103
commit 96adf6a026
1 changed files with 1 additions and 1 deletions

View File

@ -1499,7 +1499,7 @@ def key_is_down(key: NamedInt) -> bool:
def evaluate_rules(feature, notification: HIDPPNotification, device):
if logger.isEnabledFor(logging.DEBUG):
logger.debug("evaluating rules on %s", notification)
logger.debug("evaluating rules on %s %s", feature, notification)
rules.evaluate(feature, notification, device, True)