mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 09:56:44 +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
 | |
| });
 | 
