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:
Etan Kissling 2021-11-27 02:22:25 +01:00 committed by GitHub
parent bfcbeceb65
commit 5a828c3ef1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: