Skip to content

Commit

Permalink
chore: add error value to console.error (#564)
Browse files Browse the repository at this point in the history
Co-authored-by: Trim21 <[email protected]>
  • Loading branch information
duhruh and trim21 authored Dec 17, 2023
1 parent d114335 commit 5acf61b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ try {
fs.mkdirSync(path.join(argv.rundir, 'db'), {recursive: true});
fs.mkdirSync(path.join(argv.rundir, 'temp'), {recursive: true});
} catch (error) {
console.error('Failed to access runtime directory');
console.error('Failed to access runtime directory', error);
process.exit(1);
}

Expand Down

0 comments on commit 5acf61b

Please sign in to comment.