我非常喜欢console.group()功能。
是否可以使用组名作为过滤条件来过滤日志?
例如
console.log("I don't want to see this in the log");
console.group("foo");
console.log("I DO want to see this");
console.groupEnd();
console.log("I don't want to see this in the log either");
...使用字符串“ foo”,我想过滤掉第一和最后一个console.log消息。
这可能吗?
我不想在日志消息中使用字符串前缀,因为我将输出要检查的非字符串(例如,对象,数组等)。