diff --git a/package.json b/package.json index 65664b99..35e4783c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Calvin Montgomery", "name": "CyTube", "description": "Online media synchronizer and chat", - "version": "3.66.0", + "version": "3.66.1", "repository": { "url": "http://github.com/calzoneman/sync" }, diff --git a/src/user.js b/src/user.js index a8149712..c3699d83 100644 --- a/src/user.js +++ b/src/user.js @@ -282,6 +282,12 @@ User.prototype.autoAFK = function () { }; User.prototype.kick = function (reason) { + LOGGER.info( + '%s (%s) was kicked: "%s"', + this.realip, + this.getName(), + reason + ); this.socket.emit("kick", { reason: reason }); this.socket.disconnect(); };