Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2014-12-22 01:43:50 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2014-12-22 01:52:01 +0300
commit756fb5886b85345d366ec0c26bf68f228d639f1e (patch)
treeec9a28fa707121ae7a3afdf0cb98956d07f33011 /core/Archive.php
parenta96baf01831722f53fd04949c31d32eee535c68c (diff)
Replaced usage of Log::verbose() with Log::debug()
The "verbose" level doesn't exist in PSR-3, the lowest one is "debug".
Diffstat (limited to 'core/Archive.php')
-rw-r--r--core/Archive.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Archive.php b/core/Archive.php
index b407465a45..34cd44ba2f 100644
--- a/core/Archive.php
+++ b/core/Archive.php
@@ -599,14 +599,14 @@ class Archive
// we already know there are no stats for this period
// we add one day to make sure we don't miss the day of the website creation
if ($twoDaysAfterPeriod->isEarlier($site->getCreationDate())) {
- Log::verbose("Archive site %s, %s (%s) skipped, archive is before the website was created.",
+ Log::debug("Archive site %s, %s (%s) skipped, archive is before the website was created.",
$idSite, $period->getLabel(), $period->getPrettyString());
continue;
}
// if the starting date is in the future we know there is no visiidsite = ?t
if ($twoDaysBeforePeriod->isLater($today)) {
- Log::verbose("Archive site %s, %s (%s) skipped, archive is after today.",
+ Log::debug("Archive site %s, %s (%s) skipped, archive is after today.",
$idSite, $period->getLabel(), $period->getPrettyString());
continue;
}