diff --git a/src/blarg/handler.clj b/src/blarg/handler.clj index 33ff592..a3da18c 100644 --- a/src/blarg/handler.clj +++ b/src/blarg/handler.clj @@ -51,7 +51,7 @@ (try (handler request) (catch Throwable e - (.printStackTrace e) + (timbre/error e) {:status 500 :headers {"Content-Type" "text/html"} :body (layout/render-template request "error.html" {:error-info e})}))))