qa-live: simplify telegram pass progress log lines · openclaw/openclaw@d3a8480
joshavant
·
2026-04-23
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -1082,7 +1082,7 @@ export async function runTelegramQaLive(params: {
|
1082 | 1082 | const scenarioIdForLog = sanitizeTelegramQaProgressValue(scenario.id); |
1083 | 1083 | writeTelegramQaProgress( |
1084 | 1084 | progressEnabled, |
1085 | | -`scenario start (${scenarioIndexLabel}): ${scenarioIdForLog}`, |
| 1085 | +`scenario start ${scenarioIndexLabel}: ${scenarioIdForLog}`, |
1086 | 1086 | ); |
1087 | 1087 | assertLeaseHealthy(); |
1088 | 1088 | const scenarioRun = scenario.buildRun(sutUsername); |
@@ -1127,7 +1127,7 @@ export async function runTelegramQaLive(params: {
|
1127 | 1127 | scenarioResults.push(result); |
1128 | 1128 | writeTelegramQaProgress( |
1129 | 1129 | progressEnabled, |
1130 | | -`scenario pass (${scenarioIndexLabel}): ${scenarioIdForLog} details=${formatTelegramQaProgressDetails(result.details)}`, |
| 1130 | +`scenario pass ${scenarioIndexLabel}: ${scenarioIdForLog}`, |
1131 | 1131 | ); |
1132 | 1132 | } catch (error) { |
1133 | 1133 | if (!scenarioRun.expectReply) { |
@@ -1144,7 +1144,7 @@ export async function runTelegramQaLive(params: {
|
1144 | 1144 | scenarioResults.push(result); |
1145 | 1145 | writeTelegramQaProgress( |
1146 | 1146 | progressEnabled, |
1147 | | -`scenario pass (${scenarioIndexLabel}): ${scenarioIdForLog} details=${formatTelegramQaProgressDetails(result.details)}`, |
| 1147 | +`scenario pass ${scenarioIndexLabel}: ${scenarioIdForLog}`, |
1148 | 1148 | ); |
1149 | 1149 | continue; |
1150 | 1150 | } |
@@ -1158,7 +1158,7 @@ export async function runTelegramQaLive(params: {
|
1158 | 1158 | scenarioResults.push(result); |
1159 | 1159 | writeTelegramQaProgress( |
1160 | 1160 | progressEnabled, |
1161 | | -`scenario fail (${scenarioIndexLabel}): ${scenarioIdForLog} details=${formatTelegramQaProgressDetails(result.details)}`, |
| 1161 | +`scenario fail ${scenarioIndexLabel}: ${scenarioIdForLog} details=${formatTelegramQaProgressDetails(result.details)}`, |
1162 | 1162 | ); |
1163 | 1163 | } |
1164 | 1164 | assertLeaseHealthy(); |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。