From 42d61908024a1708360b3c56f13afbd8ab2fdcb4 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Fri, 8 Sep 2017 23:36:26 -0600 Subject: [PATCH] Additional logging --- core/servers/content/web.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/servers/content/web.js b/core/servers/content/web.js index 31c617e2..55fd37f2 100644 --- a/core/servers/content/web.js +++ b/core/servers/content/web.js @@ -148,7 +148,7 @@ exports.getModule = class WebServerModule extends ServerModule { const routeKey = route.getRouteKey(); if(routeKey in this.routes) { - Log.warn( { route : route }, 'Cannot add route: duplicate method/path combination exists' ); + Log.warn( { route : route, routeKey : routeKey }, 'Cannot add route: duplicate method/path combination exists' ); return false; }