Fix paired finalize re-review reentry

This commit is contained in:
ejclaw
2026-04-07 07:06:34 +09:00
parent 10e10b499c
commit 81cb9bda01
6 changed files with 154 additions and 62 deletions

View File

@@ -28,7 +28,8 @@ function createRootLogger(): Logger {
}
export const logger =
globalState.__ejclawLogger ?? (globalState.__ejclawLogger = createRootLogger());
globalState.__ejclawLogger ??
(globalState.__ejclawLogger = createRootLogger());
type LogBindings = Record<string, unknown>;