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/Tracker/Action.php')
-rw-r--r--core/Tracker/Action.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/Tracker/Action.php b/core/Tracker/Action.php
index aa721a03c5..5fba5a2862 100644
--- a/core/Tracker/Action.php
+++ b/core/Tracker/Action.php
@@ -357,7 +357,9 @@ abstract class Action
$visitAction['idlink_va'] = $this->idLinkVisitAction;
Common::printDebug("Inserted new action:");
- Common::printDebug($visitAction);
+ $visitActionDebug = $visitAction;
+ $visitActionDebug['idvisitor'] = bin2hex($visitActionDebug['idvisitor']);
+ Common::printDebug($visitActionDebug);
/**
* Triggered after successfully persisting a [visit action entity](/guides/persistence-and-the-mysql-backend#visit-actions).