mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 03:43:34 +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
 | 
						|
});
 |