diff --git a/src/common/cluster-store.ts b/src/common/cluster-store.ts index a0d7073278..aed7800b20 100644 --- a/src/common/cluster-store.ts +++ b/src/common/cluster-store.ts @@ -83,7 +83,7 @@ export class ClusterStore extends BaseStore { logger.info(`[CLUSTER-STORE] start to listen (${webFrame.routingId})`) ipcRenderer.on("cluster:state", (event, model: ClusterState) => { this.applyWithoutSync(() => { - logger.info(`[CLUSTER-STORE]: received push-state at ${location.host} (${webFrame.routingId})`, model); + logger.silly(`[CLUSTER-STORE]: received push-state at ${location.host} (${webFrame.routingId})`, model); this.getById(model.id)?.updateModel(model); }) })