Skip to content

Commit

Permalink
fix(repeater): print out started log event after deploy (#603)
Browse files Browse the repository at this point in the history
closes #602
  • Loading branch information
aborovsky authored Nov 5, 2024
1 parent 08b8fae commit 1c45196
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 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 @@ -210,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 1c45196

Please sign in to comment.