mirror of
https://github.com/penpot/penpot.git
synced 2026-04-25 19:28:12 +00:00
✨ Replace Error with Throwable (revert prev commit).
This reverts commit d218d70b8dc2fd2ecfc7e6146d32c101d3a6200e.
This commit is contained in:
parent
d218d70b8d
commit
ea03477e8e
@ -104,14 +104,14 @@
|
||||
(fn [request]
|
||||
(try
|
||||
(handler request)
|
||||
(catch Error e
|
||||
(catch Throwable e
|
||||
(try
|
||||
(let [cdata (errors/get-error-context request e)]
|
||||
(errors/update-thread-context! cdata)
|
||||
(log/errorf e "Unhandled exception: %s (id: %s)" (ex-message e) (str (:id cdata)))
|
||||
{:status 500
|
||||
:body "internal server error"})
|
||||
(catch Error e
|
||||
(catch Throwable e
|
||||
(log/errorf e "Unhandled exception: %s" (ex-message e))
|
||||
{:status 500
|
||||
:body "internal server error"})))))))
|
||||
|
||||
@ -111,7 +111,7 @@
|
||||
(fn [request]
|
||||
(try
|
||||
(handler request)
|
||||
(catch Error e
|
||||
(catch Throwable e
|
||||
(on-error e request)))))
|
||||
|
||||
(def errors
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user