job51-gitlab-cr-node-jt-1 2.5.0 → 2.5.1
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/index.js +1 -1
- package/log.txt +1141 -787
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -81,7 +81,7 @@ class GitLabCodeReviewer {
|
|
|
81
81
|
debugLog(`========== Diff Block ${blockIndex} 开始 ==========`);
|
|
82
82
|
debugLog(`文件路径:${diffObject.new_path || diffObject.old_path}`);
|
|
83
83
|
debugLog(`line_info: old_start=${diffObject.line_info?.old_start}, old_count=${diffObject.line_info?.old_count}, new_start=${diffObject.line_info?.new_start}, new_count=${diffObject.line_info?.new_count}`);
|
|
84
|
-
debugLog(`diff
|
|
84
|
+
debugLog(`diff 内容:${diffObject.diff}`);
|
|
85
85
|
debugLog(`========== Diff Block ${blockIndex} 结束 ==========`);
|
|
86
86
|
|
|
87
87
|
// 构造包含元数据的 diff 内容
|