job51-gitlab-cr-node-jt-1 2.5.1 → 2.5.2

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.
Files changed (3) hide show
  1. package/index.js +1 -1
  2. package/log.txt +1498 -1141
  3. package/package.json +1 -1
package/index.js CHANGED
@@ -210,7 +210,7 @@ ${diffObject.diff}`;
210
210
 
211
211
  // 打印报告内容前 500 字符(避免过长)
212
212
  const reportPreview = claudeResult?.length > 500 ? claudeResult.substring(0, 500) + '...' : claudeResult;
213
- debugLog(`AI 审核报告内容预览:${reportPreview}`);
213
+ debugLog(`AI 审核报告内容预览:${claudeResult}`);
214
214
 
215
215
  // 使用正则提取 LINE_INFO 内容(支持换行)
216
216
  const lineInfoMatch = claudeResult?.match(/<LINE_INFO>\s*\[([^\]]*)\]\s*<\/LINE_INFO>/);