You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to cleanup or simplify the output from the logger when in development or running from serverless-offline? The JSON is basically unreadable in a command window.
Here is how I'm declaring lambda-api:
const api = require('lambda-api')( { base: '/api',
compression: true,
logger: { level: 'warn',
stack: process.env.STAGE_ENV === 'DEV' ? true : false } } );
I'm only using res.log.error in my caught error handlers:
} catch (error) {
req.log.error(Unable to gather settings.);
req.log.error(error);
The text was updated successfully, but these errors were encountered:
Is it possible to cleanup or simplify the output from the logger when in development or running from serverless-offline? The JSON is basically unreadable in a command window.
Here is how I'm declaring lambda-api:
const api = require('lambda-api')( { base: '/api',
compression: true,
logger: { level: 'warn',
stack: process.env.STAGE_ENV === 'DEV' ? true : false } } );
I'm only using res.log.error in my caught error handlers:
} catch (error) {
req.log.error(
Unable to gather settings.
);req.log.error(error);
The text was updated successfully, but these errors were encountered: