From 80a3ba4621ef79d86ff9b66df252ba81f010196e Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Thu, 21 Feb 2019 23:46:45 -0600 Subject: [PATCH] Add more descriptive message for 404s. --- src/main/nim/strawbosspkg/server.nim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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)