Skip to content

Commit 5b4c9cd

Browse files
committed
grunt does not print error stream
1 parent 5bb9b10 commit 5b4c9cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ try {
66
var config = require(process.cwd() + '/browserstack');
77
} catch (e) {
88
if (e.code == 'MODULE_NOT_FOUND') {
9-
console.error('Configuration file `browserstack.json` is missing.');
9+
console.log('Configuration file `browserstack.json` is missing.');
1010
} else {
11-
console.error('Invalid configuration in `browserstack.json` file');
12-
console.error(e.message);
13-
console.error(e.stack);
11+
console.log('Invalid configuration in `browserstack.json` file');
12+
console.log(e.message);
13+
console.log(e.stack);
1414
process.exit(1);
1515
}
1616
}

0 commit comments

Comments
 (0)