Skip to content

Commit 3a5fde0

Browse files
authoredDec 22, 2017
Always print backtrace on error inside fork (#5431)
1 parent 4932360 commit 3a5fde0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/process.cr

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class Process
104104
yield
105105
LibC._exit 0
106106
rescue ex
107-
ex.inspect STDERR
107+
ex.inspect_with_backtrace STDERR
108108
STDERR.flush
109109
LibC._exit 1
110110
ensure

0 commit comments

Comments
 (0)
Please sign in to comment.