Skip to content

Commit

Permalink
Add debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
benStre committed Feb 12, 2024
1 parent cb581a3 commit 81bf854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network/communication-hub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class CommunicationHubHandler {
const isConnected = this.isConnected();
if (isConnected !== this.connected) {
this.#connected = isConnected;
this.#logger.info(`Connection status was changed. This endpoint (${Datex.Runtime.endpoint}) is ${isConnected ? "online" : "offline"}!`);
this.#logger.debug(`Connection status was changed. This endpoint (${Datex.Runtime.endpoint}) is ${isConnected ? "online" : "offline"}!`);
}
}

Expand Down

0 comments on commit 81bf854

Please sign in to comment.