Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/cmd/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ export function defaultReloadStrategy(

export function defaultFirefoxClient(
{connectToFirefox=defaultFirefoxConnector,
maxRetries=25, retryInterval=120}: Object = {}) {
// A max of 250 will try connecting for 30 seconds.
maxRetries=250, retryInterval=120}: Object = {}) {
var retries = 0;

function establishConnection() {
Expand Down Expand Up @@ -81,6 +82,7 @@ export function defaultFirefoxClient(
});
}

log.info('Connecting to the remote Firefox debugger');
return establishConnection();
}

Expand Down
2 changes: 1 addition & 1 deletion src/firefox/remote.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function connect(
log.debug(`Connecting to Firefox on port ${port}`);
return connectToFirefox(port)
.then((client) => {
log.info('Connected to the Firefox remote debugger');
log.debug('Connected to the remote Firefox debugger');
return new RemoteFirefox(client);
});
}
Expand Down