-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
core.log.js
26 lines (26 loc) · 847 Bytes
/
core.log.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
var $ = require('./$')
, global = require('./$.global')
, $def = require('./$.def')
, log = {}
, enabled = true;
// Methods from https://github.com/DeveloperToolsWG/console-object/blob/master/api.md
$.each.call((
'assert,clear,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,' +
'info,isIndependentlyComposed,log,markTimeline,profile,profileEnd,table,' +
'time,timeEnd,timeline,timelineEnd,timeStamp,trace,warn'
).split(','), function(key){
log[key] = function(){
var $console = global.console;
if(enabled && $console && $console[key]){
return Function.apply.call($console[key], $console, arguments);
}
};
});
$def($def.G + $def.F, {log: require('./$.assign')(log.log, log, {
enable: function(){
enabled = true;
},
disable: function(){
enabled = false;
}
})});