Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-dev-llm Commit: dba678f7d1003df58d073d2110ac69536bd10928 https://github.com/xwiki/xwiki-dev-llm/commit/dba678f7d1003df58d073d2110ac69... Author: Vincent Massol <[email protected]> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M .claude-plugin/marketplace.json M kimi.plugin.json M opencode.jsonc M xwiki/.claude-plugin/plugin.json M xwiki/okf/conventions/logging.md Log Message: ----------- [Misc] Correct which log calls a job captures conventions/logging.md said AbstractJobStatus captures "every warn/error executed on a job thread". That is true but narrower than the mechanism, and the gap matters. AbstractJobStatus (line 203) builds a plain LoggerListener over the job's LoggerTail, and LoggerListener.onEvent forwards any LogEvent it receives without looking at its level. So the capture is level-agnostic: warn and error are always captured only because those levels are always enabled with the default configuration, and a debug call is captured just as fully whenever debug is on. Read as an exhaustive list, the old wording invites the conclusion that a debug argument never reaches the job log and therefore needs none of the care the rest of the file describes -- exactly backwards, since a debug call under an isDebugEnabled() guard is the one case where the eager String is also the performance-correct choice. Co-authored-by: Claude Opus 5 (1M context) <[email protected]> Commit: 92fe0cdf997d8277b09dfe179f03d2187b8cae45 https://github.com/xwiki/xwiki-dev-llm/commit/92fe0cdf997d8277b09dfe179f03d2... Author: Vincent Massol <[email protected]> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M .claude-plugin/marketplace.json M kimi.plugin.json M opencode.jsonc M xwiki/.claude-plugin/plugin.json M xwiki/okf/conventions/logging.md Log Message: ----------- [Misc] Correct which log calls a job captures Compare: https://github.com/xwiki/xwiki-dev-llm/compare/5615c8b7fb9c...92fe0cdf997d To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-dev-llm/settings/notifications