npm的`debug`软件包:显示2个软件包中的日志

时间:2019-03-21 10:52:35

标签: javascript debugging

根据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 = '???'

1 个答案:

答案 0 :(得分:1)

尝试一下:

localStorage.debug = 'myPackage1:*,someOtherPackage:*'

在字符串之间使用,

如果要选择myPackage1:asomeOtherPackage:b

localStorage.debug = 'myPackage1:a,someOtherPackage:b'