fix(proxy-server): change request logging level to debug (#3993)

This commit is contained in:
Erez Rokah 2020-07-07 18:26:43 +03:00 committed by GitHub
parent 6a0e918ffa
commit 784c1fe480
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ export const registerCommonMiddlewares = (app: express.Express, options: Options
const { logger } = options;
const stream = {
write: (message: string) => {
logger.info(String(message).trim());
logger.debug(String(message).trim());
},
};
app.use(morgan('combined', { stream }));