@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.
- package/.cairn/session.json +2 -2
- package/package.json +1 -1
- package/python/sentinel/main.py +2 -4
package/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-25T04:
|
|
3
|
-
"checkpoint_at": "2026-03-25T04:
|
|
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
package/python/sentinel/main.py
CHANGED
|
@@ -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
|
-
#
|
|
720
|
-
|
|
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
|
|