I'm curious if there's a way to enable specific logs rather than all logging.
for example:
var bows = require('bows');
var personLogs = bows('person');
var companyLogs = bows('company')
Is there a way to specify that I only want to see company logs and not person logs? In the browser I can filter of course, but I'm looking for a way to do this in node. the npm debug package allows me to pass in --debug='company' for example, is there anything like that in bows?
I'm curious if there's a way to enable specific logs rather than all logging.
for example:
Is there a way to specify that I only want to see company logs and not person logs? In the browser I can filter of course, but I'm looking for a way to do this in node. the npm debug package allows me to pass in --debug='company' for example, is there anything like that in bows?