UNPKG

fastify-generate

Version:

Generate fastify applications fastly

15 lines (13 loc) 249 B
// https://www.fastify.io/docs/latest/Logging/ module.exports = function createLogger (env) { if (env !== 'production') { return { prettyPrint: true, level: 'debug' } } // for production return { level: 'info' } }