From 7bd161ddc59ac6b632d4f7d07a60aefade75f543 Mon Sep 17 00:00:00 2001
From: diosmosis <benaka@piwik.pro>
Date: Sat, 15 Nov 2014 18:39:19 -0800
Subject: [PATCH] Change two logs in PluginsArchiver.php to use verbose level
 since they can result in a lot of log entries.

---
 core/ArchiveProcessor/PluginsArchiver.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/ArchiveProcessor/PluginsArchiver.php b/core/ArchiveProcessor/PluginsArchiver.php
index e0618f8343..d1bb950d38 100644
--- a/core/ArchiveProcessor/PluginsArchiver.php
+++ b/core/ArchiveProcessor/PluginsArchiver.php
@@ -96,7 +96,7 @@ class PluginsArchiver
             $archiver = new $archiverClass($this->archiveProcessor);
 
             if (!$archiver->isEnabled()) {
-                Log::debug("PluginsArchiver::%s: Skipping archiving for plugin '%s'.", __FUNCTION__, $pluginName);
+                Log::verbose("PluginsArchiver::%s: Skipping archiving for plugin '%s'.", __FUNCTION__, $pluginName);
                 continue;
             }
 
@@ -111,7 +111,7 @@ class PluginsArchiver
                     $archiver->aggregateMultipleReports();
                 }
             } else {
-                Log::debug("PluginsArchiver::%s: Not archiving reports for plugin '%s'.", __FUNCTION__, $pluginName);
+                Log::verbose("PluginsArchiver::%s: Not archiving reports for plugin '%s'.", __FUNCTION__, $pluginName);
             }
 
             Manager::getInstance()->deleteAll($latestUsedTableId);
-- 
GitLab