1.1.2 • Published 8 years ago

async-chainable-log v1.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

async-chainable-log

Plugin for async-chainable that provides simple logging.

var asyncChainable = require('async-chainable');
var asyncChainableLog = require('async-chainable-log');

asyncChainable()
	.use(asyncChainableLog)

	.log('Waiting 1000ms')
	.then(function(next) {
		setTimeout(next, 1000);
	})

	.logDefaults({prefix: '\t\t'})
	.log('This will be indented with two tabs')

	.end();

API

The async-chainable-log API exposes two API calls log() and logDefaults() the first simply logs and the second takes an object with the following parameters:

OptionDescription
callbackOptional callback function to use for logging. The default is console.log
prefixOptional prefix to prepend to all logging output before it is passed to the callback
suffixOptional suffix to append to all logging output before it is passed to the callback
1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago