mirror of
https://github.com/strapi/strapi.git
synced 2025-07-04 07:27:23 +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
|
||
|
});
|