In arc2, an error in a defop such as (defop test req
foo)
would display the error on the console: reference to undefined identifier: _foo
=== context ===
gs2411
gs902
handle-request-thread
in arc3 the error message is no longer displayed.Looks like the culprit is: (errsafe (handle-request-thread i o ip))
This seems to work: (on-err
(fn (c) (prn details.c))
(fn () (handle-request-thread i o ip)))
|