Skip to content

Commit 688b8b0

Browse files
committed
console.log(stderr) to console.error(stderr)
1 parent 61457f0 commit 688b8b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/tunnel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var Tunnel = function Tunnel (key, port, tunnelIdentifier, callback, err) {
2424

2525
console.log("Launching tunnel..");
2626
var subProcess = exec(tunnelCommand, function (error, stdout, stderr) {
27-
console.log(stderr);
27+
console.error(stderr);
2828
if (stdout.indexOf('Error') >= 0) {
2929
console.log("..Failed");
3030
console.log(stdout);

0 commit comments

Comments
 (0)