CHANGELOG.md 403 B

07-May-2016

Changed console.log from ConsoleWriter to process.stdout.write, so we can warp console.log into a logger

console.log = require('hlogger').createLogger('name');

26-Jun-2016

Changed logger to support objects as console.log

var obj = {
	test: {
		msg: 'testing depth'
	},
	arr:[1,2,3]
}

log.info("Testing: ", obj);

Changed package.json test to run test-conf