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/View.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/View.php')
-rw-r--r--core/View.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/View.php b/core/View.php
index 6200a23113..9a31220731 100644
--- a/core/View.php
+++ b/core/View.php
@@ -232,7 +232,7 @@ class View implements ViewInterface
$user = APIUsersManager::getInstance()->getUser($this->userLogin);
$this->userAlias = $user['alias'];
} catch (Exception $e) {
- Log::verbose($e);
+ Log::debug($e);
// can fail, for example at installation (no plugin loaded yet)
}