From 278570f3ed7076538f0a504ef38ed999c672f5c0 Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Wed, 7 Aug 2013 00:04:36 -0400 Subject: [PATCH] Fix lock log message --- channel.js | 1 + 1 file changed, 1 insertion(+) diff --git a/channel.js b/channel.js index 901de7b3..62f6ffdf 100644 --- a/channel.js +++ b/channel.js @@ -1571,6 +1571,7 @@ Channel.prototype.tryToggleLock = function(user) { return; } + this.logger.log("*** " + user.name + " set playlist lock to " + this.openqueue); this.setLock(this.openqueue); }