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.
This commit is contained in:
parent
bfcbeceb65
commit
5a828c3ef1
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue