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:
Diffstat (limited to 'core/ArchiveProcessing.php')
-rw-r--r--core/ArchiveProcessing.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/core/ArchiveProcessing.php b/core/ArchiveProcessing.php
index b16bc343e7..099b0824a5 100644
--- a/core/ArchiveProcessing.php
+++ b/core/ArchiveProcessing.php
@@ -567,11 +567,15 @@ abstract class Piwik_ArchiveProcessing
{
$temporary = 'temporary archive';
}
- Piwik::log("'" . $this->period->getLabel() . "'"
- .", idSite = ". $this->idsite." ($temporary)"
- .", segment = '". $this->getSegment()->getString()."'"
- .", report = '". $this->getRequestedReport()."'"
- .", UTC datetime [".$this->startDatetimeUTC." -> ".$this->endDatetimeUTC." ]...");
+ Piwik::log(sprintf("'%s, idSite = %d (%s), segment '%s', report = '%s', UTC datetime [%s -> %s]",
+ $this->period->getLabel(),
+ $this->idsite,
+ $temporary,
+ $this->getSegment()->getString(),
+ $this->getRequestedReport(),
+ $this->startDatetimeUTC,
+ $this->endTimestampUTC
+ ));
}
/**