changed back to info level logging

This commit is contained in:
Josh Harvey 2014-04-27 23:39:41 -04:00
parent 1e65c65670
commit b5b63fc8ea

View file

@ -17,7 +17,7 @@ var Trader = module.exports = function (db) {
this.db = db;
this.rates = {};
this.logger = new (winston.Logger)({
transports: [new (winston.transports.Console)({level: 'debug'})]
transports: [new (winston.transports.Console)({level: 'info'})]
});
this._tradeQueue = [];