Lower log level of "Queue is already full" non-error message.

This commit is contained in:
Buster "Silver Eagle" Neece 2020-04-22 17:55:29 -05:00
parent 9456786e94
commit 774ab5a1ea
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ class AutoDJ implements EventSubscriberInterface
$queueLength = count($upcomingQueue);
if ($queueLength >= $maxQueueLength) {
$this->logger->info('AutoDJ queue is already at current max length (' . $maxQueueLength . ').');
$this->logger->debug('AutoDJ queue is already at current max length (' . $maxQueueLength . ').');
$this->logger->popProcessor();
return;
}