Skip to content

Commit

Permalink
Fix path of file
Browse files Browse the repository at this point in the history
  • Loading branch information
Kostya Bats committed Oct 28, 2024
1 parent bf2c25a commit 45dbb1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/grabber/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function runGrabbing(window) {
try {
fs.writeFileSync(path.join(configS.recordingsDirectory ?? ".", recordId + "_" + streamKey + ".webm"), buffer);
} catch(e) {
console.error(`Failed to save record file ${recordId} [${streamKey}]`);
console.error(`Failed to save record file ${recordId} [${streamKey}]: ${e}`);
}
});
}
Expand Down

0 comments on commit 45dbb1f

Please sign in to comment.