Don't log "on change" when macro is paused

This commit is contained in:
WarmUpTill 2026-05-04 21:07:43 +02:00 committed by WarmUpTill
parent a149a11c57
commit 265daebdf3

View File

@ -389,7 +389,7 @@ bool Macro::ShouldRunActions() const
!_paused && (_matched || _elseActions.size() > 0) &&
_actionModeMatch;
if (VerboseLoggingEnabled() && !_actionModeMatch) {
if (VerboseLoggingEnabled() && !_actionModeMatch && !_paused) {
if (_matched && _actions.size() > 0) {
blog(LOG_INFO, "skip actions for Macro %s (on change)",
_name.c_str());