removed superlogging for now

This commit is contained in:
soulgalore 2014-09-23 22:58:25 +02:00
parent 7d01cd9d54
commit e2c7471946
1 changed files with 2 additions and 2 deletions

View File

@ -133,12 +133,12 @@ function runBrowsertime(args, callback) {
var bt = spawn('java', childArgs);
bt.stdout.on('data', function(data) {
console.log('stdout:' + data);
// console.log('stdout:' + data);
});
bt.stderr.on('data', function(data) {
// argh the BMP logs a lot on error
console.log('Error from BrowserTime: ' + data);
// console.log('Error from BrowserTime: ' + data);
});
bt.on('close', function(code) {