Skip to content

Commit

Permalink
feat(repeater): address PR comment
Browse files Browse the repository at this point in the history
closes #602
  • Loading branch information
aborovsky committed Nov 5, 2024
1 parent 6a5bca9 commit 9f1b2da
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/Repeater/ServerRepeaterLauncher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ export class ServerRepeaterLauncher implements RepeaterLauncher {
this.subscribeToEvents();

await this.repeaterServer.connect(this.repeaterId);

logger.log('The Repeater (%s) started', this.info.version);
}

private getRuntime(): DeploymentRuntime {
Expand Down Expand Up @@ -164,9 +162,6 @@ export class ServerRepeaterLauncher implements RepeaterLauncher {
this.repeaterServer.on(RepeaterServerEvents.RECONNECTION_SUCCEEDED, () =>
logger.log('The Repeater (%s) connected', this.info.version)
);
this.repeaterServer.on(RepeaterServerEvents.DEPLOY, () =>
logger.log('The Repeater (%s) deployed', this.info.version)
);
}

private handleError = ({
Expand Down Expand Up @@ -213,6 +208,7 @@ export class ServerRepeaterLauncher implements RepeaterLauncher {
},
this.getRuntime()
);
logger.log('The Repeater (%s) started', this.info.version);
} catch {
// noop
}
Expand Down

0 comments on commit 9f1b2da

Please sign in to comment.