Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit 316b1de

Browse files
vaskoudanbucholtz
authored andcommitted
fix(proxies): Wrong parameter in Logger.info, in setupProxies function causing proxies not to load (#395)
1 parent 69f89a8 commit 316b1de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dev-server/http-server.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function setupProxies(app: express.Application) {
4848
opts.rejectUnauthorized = !(proxy.rejectUnauthorized === false);
4949

5050
app.use(proxy.path, proxyMiddleware(opts));
51-
Logger.info('Proxy added:', proxy.path + ' => ' + url.format(opts));
51+
Logger.info('Proxy added:' + proxy.path + ' => ' + url.format(opts));
5252
}
5353
});
5454
}

0 commit comments

Comments
 (0)