Skip to content

Commit 1964e69

Browse files
authored
fix: stdio print error (#101)
stdio print error
1 parent 433aca7 commit 1964e69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stdio.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ async function main() {
5757
}
5858

5959
main().catch((error) => {
60-
log.error('Server error:', error);
60+
log.error(`Server error: ${error}`);
6161
process.exit(1);
6262
});

0 commit comments

Comments
 (0)