From 1204479b130ddb1061f34eea7ffc796a466b9b7d Mon Sep 17 00:00:00 2001 From: SteveVanOpstal Date: Mon, 30 May 2016 23:34:36 +0200 Subject: [PATCH] fix(host): undefined in log --- src/server/host.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/host.ts b/src/server/host.ts index 9923eb3..2f38140 100644 --- a/src/server/host.ts +++ b/src/server/host.ts @@ -268,7 +268,7 @@ export class Server { private maskApiKey(path: string): string { if (process.env.NODE_ENV === 'development') { - return; + return path; } let apiKeyPostion = path.indexOf('api_key='); if (apiKeyPostion === -1) {