From dc8d14c95b00722d0227a6103a31602a52f03cf0 Mon Sep 17 00:00:00 2001 From: Jamis Date: Tue, 18 Nov 2025 19:11:26 +0800 Subject: [PATCH] Debug log for ABGI (#2367) --- repo/js/AbundantOre/main.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/repo/js/AbundantOre/main.js b/repo/js/AbundantOre/main.js index 69c0b5989..ac41086ca 100644 --- a/repo/js/AbundantOre/main.js +++ b/repo/js/AbundantOre/main.js @@ -556,6 +556,8 @@ async function main() { const estimated_prompt = estimated_yield === accurate_yield ? "" : "(预计)"; const target_yield_prompt = target_yield === null ? "" : `/${target_yield}`; log.info(`当前产出${estimated_prompt}:${Math.round(estimated_yield)}${target_yield_prompt}个`); + // For ABGI only + log.debug(`当前进度:${Math.round(estimated_yield)}${target_yield_prompt}个`); } { const running_minutes = ((Date.now() - start_time) / 1000 / 60).toFixed(1); const total_minutes_prompt = run_until_unix_time === null ? "" : `/${Math.round((run_until_unix_time - start_time) / 60 / 1000)}`;