diff --git a/src/main/nim/strawbosspkg/server.nim b/src/main/nim/strawbosspkg/server.nim index 5a8e36c..4603ca7 100644 --- a/src/main/nim/strawbosspkg/server.nim +++ b/src/main/nim/strawbosspkg/server.nim @@ -180,7 +180,9 @@ proc start*(cfg: StrawBossConfig): void = try: let authToken = makeAuthToken(cfg, uname, pwd) resp($(%authToken), JSON) - except: jsonResp(Http401, getCurrentExceptionMsg()) + except: + jsonResp(Http401, getCurrentExceptionMsg()) + if ctx.cfg.debug: echo getStackTrace() get "/verify-auth": checkAuth() @@ -445,7 +447,7 @@ proc start*(cfg: StrawBossConfig): void = get re".*": - jsonResp(Http404) + jsonResp(Http404, "URL [" & request.path & "] is not present on this server.") post re".*": jsonResp(Http404)