We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eba765 commit d6949d5Copy full SHA for d6949d5
1 file changed
scripts/e2e/lib/codex-media-path/jsonl-request-tail.mjs
@@ -33,7 +33,7 @@ export function createJsonlRequestTailer(filePath, options = {}) {
33
return JSON.parse(line);
34
} catch (error) {
35
const message = error instanceof Error ? error.message : String(error);
36
- throw new Error(`invalid app-server JSONL at ${filePath}: ${message}`);
+ throw new Error(`invalid app-server JSONL at ${filePath}: ${message}`, { cause: error });
37
}
38
39
0 commit comments