diff --git a/entry b/entry index dca7efa..0650403 100755 --- a/entry +++ b/entry @@ -144230,7 +144230,9 @@ var ThinkingTimer = class { } markToolCall() { const now = Date.now(); - log.debug(`\xBB thinking timer: markToolCall at ${now}, lastToolResult=${this.lastToolResultTimestamp}`); + log.debug( + `\xBB thinking timer: markToolCall at ${now}, lastToolResult=${this.lastToolResultTimestamp}` + ); if (this.lastToolResultTimestamp === null) return; const elapsed = now - this.lastToolResultTimestamp; if (elapsed < THINKING_THRESHOLD) return; diff --git a/utils/timer.ts b/utils/timer.ts index 056a870..bd6db5b 100644 --- a/utils/timer.ts +++ b/utils/timer.ts @@ -39,7 +39,9 @@ export class ThinkingTimer { markToolCall(): void { const now = Date.now(); - log.debug(`» thinking timer: markToolCall at ${now}, lastToolResult=${this.lastToolResultTimestamp}`); + log.debug( + `» thinking timer: markToolCall at ${now}, lastToolResult=${this.lastToolResultTimestamp}` + ); if (this.lastToolResultTimestamp === null) return; const elapsed = now - this.lastToolResultTimestamp; if (elapsed < THINKING_THRESHOLD) return;