diff --git a/cvmts/src/CollabVMServer.ts b/cvmts/src/CollabVMServer.ts index 3378856..70908a1 100644 --- a/cvmts/src/CollabVMServer.ts +++ b/cvmts/src/CollabVMServer.ts @@ -377,7 +377,7 @@ export default class CollabVMServer implements IProtocolMessageHandler { } if ((!this.turnsAllowed || this.Config.collabvm.turnwhitelist) && user.rank !== Rank.Admin && user.rank !== Rank.Moderator && !user.turnWhitelist) return; if (!user.connectedToNode) { - user.logger.warn({event: "vote/ratelimited"}); + user.logger.warn({event: "vote/not connected to node"}); return; } if (!user.VoteRateLimit.request()) { diff --git a/cvmts/src/User.ts b/cvmts/src/User.ts index f80f67b..961ee84 100644 --- a/cvmts/src/User.ts +++ b/cvmts/src/User.ts @@ -183,7 +183,6 @@ export class User { } sendAuth(authServer: string): void { - this.logger.info({event: "sending auth", auth_server: authServer}); this.protocol.sendAuth(this, authServer); }