We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1bd029 commit 9bc281bCopy full SHA for 9bc281b
modules/ln_core/log.scm
@@ -137,7 +137,13 @@ end-of-c-declare
137
(continuation-capture
138
(lambda (cont)
139
(display-exception-in-context e cont port)
140
- (display-continuation-backtrace cont port))))))
+ (let ((all-frames #t) ;; gambit default: #f
141
+ (display-env #t) ;; gambit default: #f
142
+ (max-head 10) ;; gambit default: 10
143
+ (max-tail 4) ;; gambit default: 4
144
+ (offset -2) ;; gambit default: 0 -- nesting level of this expression
145
+ )
146
+ (display-continuation-backtrace cont port all-frames display-env max-head max-tail offset)))))))
147
(log-error "HALT pid " ((c-lambda () int "getpid")))
148
(exit 70))
149
0 commit comments