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 'plugins/CoreAdminHome/Commands/InvalidateReportData.php')
-rw-r--r--plugins/CoreAdminHome/Commands/InvalidateReportData.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/CoreAdminHome/Commands/InvalidateReportData.php b/plugins/CoreAdminHome/Commands/InvalidateReportData.php
index cdb1f3240e..4b10f9e2c3 100644
--- a/plugins/CoreAdminHome/Commands/InvalidateReportData.php
+++ b/plugins/CoreAdminHome/Commands/InvalidateReportData.php
@@ -1,4 +1,5 @@
<?php
+
/**
* Matomo - free/libre analytics platform
*
@@ -109,7 +110,9 @@ class InvalidateReportData extends ConsoleCommand
false, $plugin, $ignoreLogDeletionLimit);
if ($output->getVerbosity() > OutputInterface::VERBOSITY_NORMAL) {
- $logger->info($invalidationResult->makeOutputLogs());
+ foreach ($invalidationResult->makeOutputLogs() as $outputLog) {
+ $logger->info($outputLog);
+ }
}
}
}