From 7d9efc253465c5d95d20f216a2ff6e42be82f1ca Mon Sep 17 00:00:00 2001 From: John Morrison Date: Sat, 7 Feb 2015 20:47:55 -0800 Subject: [PATCH] fix(logging): use route.path in debug message, not route.url --- lib/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/server.js b/lib/server.js index 97943e968..7393a158f 100644 --- a/lib/server.js +++ b/lib/server.js @@ -65,7 +65,7 @@ exports.create = function createServer() { }; } logger.verbose('route.payload', { - url: route.url, + path: route.path, method: method, payload: route.config.payload });