根据the docs,如果我这样做:
localStorage.debug = 'worker:*'
然后将显示以下2条日志:
a = debug('worker:a');
b = debug('worker:b');
setInterval(function(){
a('doing some work');
}, 1000);
setInterval(function(){
b('doing some work');
}, 1200);
如果我想显示两个名称不同的软件包的日志怎么办?
a = debug('myPackage1:a');
b = debug('someOtherPackage:b');
我应该在这里放什么?
localStorage.debug = '???'
答案 0 :(得分:1)
尝试一下:
localStorage.debug = 'myPackage1:*,someOtherPackage:*'
在字符串之间使用,
。
如果要选择myPackage1:a
和someOtherPackage:b
:
localStorage.debug = 'myPackage1:a,someOtherPackage:b'