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:
authorThomas Steur <thomas.steur@googlemail.com>2014-07-03 07:11:09 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-07-03 07:11:09 +0400
commit29f8b8548fc4e72b82733382e17147965f279842 (patch)
treec9ea4e0e115a6cd6aeeff3c1c8703ced21e168de /core/Tracker/Visit.php
parente5fd95f234a068ca67387a3a30ce5e32c417ef05 (diff)
debugging not passing ui tests the hard way, hopefully it actually logs to the log file
Diffstat (limited to 'core/Tracker/Visit.php')
-rw-r--r--core/Tracker/Visit.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/Tracker/Visit.php b/core/Tracker/Visit.php
index 0efc6e8a03..036031bb83 100644
--- a/core/Tracker/Visit.php
+++ b/core/Tracker/Visit.php
@@ -84,6 +84,8 @@ class Visit implements VisitInterface
// the IP is needed by isExcluded() and GoalManager->recordGoals()
$this->visitorInfo['location_ip'] = $this->request->getIp();
+ Log::getInstance()->customLogToFileForDebuggingIfYouStillSeeThisHereRemoveIt('Handle Visit' . $this->request->getIp());
+
$excluded = new VisitExcluded($this->request, $this->visitorInfo['location_ip']);
if ($excluded->isExcluded()) {
return;
@@ -99,6 +101,8 @@ class Visit implements VisitInterface
*/
Piwik::postEvent('Tracker.setVisitorIp', array(&$this->visitorInfo['location_ip']));
+ Log::getInstance()->customLogToFileForDebuggingIfYouStillSeeThisHereRemoveIt('Handle Not Excluded Visit' . $this->visitorInfo['location_ip']);
+
$this->visitorCustomVariables = $this->request->getCustomVariables($scope = 'visit');
if (!empty($this->visitorCustomVariables)) {
Common::printDebug("Visit level Custom Variables: ");