removed superlogging for now
This commit is contained in:
parent
7d01cd9d54
commit
e2c7471946
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue