mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			222 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			222 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
module.exports = function noLoggerProvider() {
 | 
						|
    // do something with the name
 | 
						|
    return {
 | 
						|
        debug: () => {},
 | 
						|
        info: () => {},
 | 
						|
        warn: () => {},
 | 
						|
        error: console.error,
 | 
						|
    };
 | 
						|
};
 |