We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d5d1e4 commit 827a27cCopy full SHA for 827a27c
1 file changed
ralph-loop.ts
@@ -91,7 +91,7 @@ function log(message: string): void {
91
const entry = `[${new Date().toISOString()}] ${message}\n`;
92
process.stdout.write(entry);
93
try {
94
- execSync(`printf '%s' ${JSON.stringify(entry)} >> ${LOG_FILE}`);
+ execSync(`printf '%b' ${JSON.stringify(entry)} >> ${LOG_FILE}`);
95
} catch {
96
// Best-effort logging
97
}
0 commit comments