mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 00:51:17 +00:00
15 lines
172 B
JavaScript
15 lines
172 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Logger.
|
|
*/
|
|
|
|
const pino = require('pino');
|
|
|
|
module.exports = pino({
|
|
level: 'debug',
|
|
timestamp: false,
|
|
prettyPrint: true,
|
|
forceColor: true
|
|
});
|