From 5a828c3ef16309cff39adada7cb91c7c26d5207f Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Sat, 27 Nov 2021 02:22:25 +0100 Subject: [PATCH] fix `it` -> `is` typo (#16) This fixes a minor typo in the log message `Request it not part of api` and changes the `api` to uppercase for consistency with the other logs. --- presto/serverprivate.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presto/serverprivate.nim b/presto/serverprivate.nim index baf2228..6990a6e 100644 --- a/presto/serverprivate.nim +++ b/presto/serverprivate.nim @@ -148,7 +148,7 @@ proc processRestRequest*[T](server: T, error_name = $exc.name return dumbResponse() else: - debug "Request it not part of api", peer = $request.remoteAddress(), + debug "Request is not part of API", peer = $request.remoteAddress(), meth = $request.meth, uri = $request.uri return await request.respond(Http404, "", HttpTable.init()) else: