You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							450 B
						
					
					
				
			
		
		
	
	
							18 lines
						
					
					
						
							450 B
						
					
					
				'use strict'; | 
						|
 | 
						|
var logObject = {}; | 
						|
['log', 'debug', 'warn'].forEach(function (level) { | 
						|
  var levelExists; | 
						|
 | 
						|
  try { | 
						|
    levelExists = global.console && global.console[level] && global.console[level].apply; | 
						|
  } catch(e) { | 
						|
    // do nothing | 
						|
  } | 
						|
 | 
						|
  logObject[level] = levelExists ? function () { | 
						|
    return global.console[level].apply(global.console, arguments); | 
						|
  } : (level === 'log' ? function () {} : logObject.log); | 
						|
}); | 
						|
 | 
						|
module.exports = logObject;
 | 
						|
 |