Skip to content

Commit 1f07c16

Browse files
committed
Removed stdout, console.error to console.log
1 parent 50a8eb0 commit 1f07c16

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/tunnel.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +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.error(stderr);
28-
console.error(stdout);
27+
console.log(stderr);
2928
if (stdout.indexOf('Error') >= 0) {
3029
console.log("Tunnel launching failed");
3130
console.log(stdout);

0 commit comments

Comments
 (0)