Skip to content

Commit

Permalink
refactor(repeater): adjust error message (#501)
Browse files Browse the repository at this point in the history
  • Loading branch information
mongoose79 authored Nov 20, 2023
1 parent 0c15fde commit 1d8ed3b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Repeater/ServerRepeaterLauncher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,11 @@ export class ServerRepeaterLauncher implements RepeaterLauncher {
)
);
this.repeaterServer.reconnectionAttempted(({ attempt, maxAttempts }) =>
logger.warn('Failed to connect (attempt %d/%d)', attempt, maxAttempts)
logger.warn(
'Failed to connect to Bright cloud (attempt %d/%d)',
attempt,
maxAttempts
)
);
this.repeaterServer.reconnectionSucceeded(() =>
logger.log('The Repeater (%s) connected', this.info.version)
Expand Down

0 comments on commit 1d8ed3b

Please sign in to comment.