Arc Forumnew | comments | leaders | submitlogin
Arc3: errors in defop no longer displayed (fixed)
4 points by CatDancer 5409 days ago | 1 comment
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)))


2 points by pg 5409 days ago | link

Good catch. Fixed.

-----