style: apply prettier formatting to modified files
https://claude.ai/code/session_01JPjzhBp9PR5LtfLWVDrYrH
This commit is contained in:
@@ -507,11 +507,7 @@ export async function runContainerAgent(
|
|||||||
// Full input is only included at verbose level to avoid
|
// Full input is only included at verbose level to avoid
|
||||||
// persisting user conversation content on every non-zero exit.
|
// persisting user conversation content on every non-zero exit.
|
||||||
if (isVerbose) {
|
if (isVerbose) {
|
||||||
logLines.push(
|
logLines.push(`=== Input ===`, JSON.stringify(input, null, 2), ``);
|
||||||
`=== Input ===`,
|
|
||||||
JSON.stringify(input, null, 2),
|
|
||||||
``,
|
|
||||||
);
|
|
||||||
} else {
|
} else {
|
||||||
logLines.push(
|
logLines.push(
|
||||||
`=== Input Summary ===`,
|
`=== Input Summary ===`,
|
||||||
|
|||||||
@@ -96,7 +96,9 @@ export function ensureContainerRuntimeRunning(): void {
|
|||||||
console.error(
|
console.error(
|
||||||
'╚════════════════════════════════════════════════════════════════╝\n',
|
'╚════════════════════════════════════════════════════════════════╝\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,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user