diff --git a/src/container-runner.ts b/src/container-runner.ts index 5eb85d0..a6b58d7 100644 --- a/src/container-runner.ts +++ b/src/container-runner.ts @@ -507,11 +507,7 @@ export async function runContainerAgent( // Full input is only included at verbose level to avoid // persisting user conversation content on every non-zero exit. if (isVerbose) { - logLines.push( - `=== Input ===`, - JSON.stringify(input, null, 2), - ``, - ); + logLines.push(`=== Input ===`, JSON.stringify(input, null, 2), ``); } else { logLines.push( `=== Input Summary ===`, diff --git a/src/container-runtime.ts b/src/container-runtime.ts index c7324e2..9f32d10 100644 --- a/src/container-runtime.ts +++ b/src/container-runtime.ts @@ -96,7 +96,9 @@ export function ensureContainerRuntimeRunning(): void { console.error( '╚════════════════════════════════════════════════════════════════╝\n', ); - throw new Error('Container runtime is required but failed to start', { cause: err }); + throw new Error('Container runtime is required but failed to start', { + cause: err, + }); } }