Skip to content

Commit

Permalink
fix(host): undefined in log
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveVanOpstal committed May 30, 2016
1 parent ca318af commit 1204479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/host.ts
Expand Up @@ -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) {
Expand Down

0 comments on commit 1204479

Please sign in to comment.