Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
feat: better error when tunnel fails
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtajina committed Mar 29, 2014
1 parent 39e67d9 commit 20ea6bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var createBrowserStackTunnel = function(logger, config, emitter) {

tunnel.start(function(error) {
if (error) {
log.error('Can not establish the tunnel.');
log.error('Can not establish the tunnel.\n%s', error.toString());
deferred.reject(error);
} else {
log.debug('Tunnel established.')
Expand Down

0 comments on commit 20ea6bd

Please sign in to comment.