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.
19 lines
450 B
19 lines
450 B
4 years ago
|
'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;
|