verbose logging on travis

This commit is contained in:
jomo 2015-12-15 21:09:13 +01:00
parent 5cb20b1105
commit caeb9a52fe

View File

@ -17,7 +17,7 @@ var fs = require("fs");
config.server.http_timeout *= 3; config.server.http_timeout *= 3;
// no spam // no spam
if (process.env.VERBOSE_TEST !== "true") { if (process.env.VERBOSE_TEST !== "true" && process.env.TRAVIS !== "true") {
logging.log = logging.debug = logging.warn = logging.error = function() {}; logging.log = logging.debug = logging.warn = logging.error = function() {};
} }