@misterhuydo/sentinel 1.4.31 → 1.4.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  {
2
- "message": "Auto-checkpoint at 2026-03-25T04:09:49.570Z",
3
- "checkpoint_at": "2026-03-25T04:09:49.571Z",
2
+ "message": "Auto-checkpoint at 2026-03-25T04:33:16.269Z",
3
+ "checkpoint_at": "2026-03-25T04:33:16.270Z",
4
4
  "active_files": [],
5
5
  "notes": [],
6
6
  "mtime_snapshot": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@misterhuydo/sentinel",
3
- "version": "1.4.31",
3
+ "version": "1.4.32",
4
4
  "description": "Sentinel — Autonomous DevOps Agent installer and manager",
5
5
  "bin": {
6
6
  "sentinel": "./bin/sentinel.js"
@@ -716,10 +716,8 @@ def _setup_workspace_log() -> None:
716
716
  fmt = logging.Formatter("%(asctime)s %(levelname)-7s %(name)s — %(message)s")
717
717
  handler = logging.FileHandler(workspace_log, mode="w", encoding="utf-8")
718
718
  handler.setFormatter(fmt)
719
- # Main sentinel logger startup/shutdown messages
720
- # Boss + Slack loggers → conversation activity
721
- for name in ("sentinel", "sentinel.sentinel_boss", "sentinel.slack_bot"):
722
- logging.getLogger(name).addHandler(handler)
719
+ # Add to root sentinel logger only child loggers propagate up naturally
720
+ logging.getLogger("sentinel").addHandler(handler)
723
721
  except Exception as e:
724
722
  logger.warning("Could not open workspace log %s: %s", workspace_log, e)
725
723