debug-stack
v0.1.1
Published
print your debug logs and objects in a stack
Downloads
2
Readme
debug-stack
var debugStack = require('debug-stack');
var debug = debugStack('my method');
debug ('performed action 1');
debug ('performed action 2');
debug.print();
Console output:
my method
> performed action 1
> performed action 2