You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_logger.LogDebug("Rulesets did not match for rule '{RuleName}' on instance '{InstanceId}'",rule.Name,instance.Config.Uuid);
183
+
_logger.LogDebug("Rulesets did not match for rule '{RuleId}' on instance '{InstanceId}'",rule.Id,instance.Config.Uuid);
184
184
return;
185
185
}
186
186
187
-
_logger.LogInformation("Executing rule '{RuleName}' for instance '{InstanceId}' in {Mode} mode",rule.Name,instance.Config.Uuid,rule.ActionExecutionMode);
187
+
_logger.LogInformation("Executing rule '{RuleId}' for instance '{InstanceId}' in {Mode} mode",rule.Id,instance.Config.Uuid,rule.ActionExecutionMode);
> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking.
4
+
5
+
**Goal:** Log event rule UUIDs instead of mutable rule display names in daemon event trigger execution logs.
6
+
7
+
**Architecture:** Keep event trigger behavior unchanged and only adjust structured logging arguments in `EventTriggerService`. Use `EventRule.Id` for rule identity while retaining instance UUID and execution mode.
0 commit comments