From bc00eb7d2f94166ae310a63734b5a3ce5fc73da6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Morales?= Date: Fri, 5 Oct 2018 10:58:37 -0700 Subject: [PATCH] Removed extra whitespace --- lib/rest-adapter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rest-adapter.js b/lib/rest-adapter.js index 703adbc..90b05fa 100644 --- a/lib/rest-adapter.js +++ b/lib/rest-adapter.js @@ -411,7 +411,7 @@ RestAdapter.prototype._shouldHandleErrors = function() { RestAdapter.remoteMethodNotFoundHandler = function(className) { className = className || '(unknown)'; return function restRemoteMethodNotFound(req, res, next) { - var message = g.f('{{Shared class}} \"%s\" has no method handling %s %s', + var message = g.f('{{Shared class}} \"%s\" has no method handling %s %s', className, req.method, req.url); var error = new Error(message); error.statusCode = 404;