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:
authormattab <matthieu.aubry@gmail.com>2014-11-07 08:57:58 +0300
committermattab <matthieu.aubry@gmail.com>2014-11-07 08:57:58 +0300
commit4a52a7f360eba70f66a1d6880aba74dc552a4a0d (patch)
treeea76cdfb1eb0ce70b193f477bb76be2d1285c613 /core/Session.php
parentc90cb332989fc60f37be6f85db15cf2d13d413f7 (diff)
refs #6612 Set default logger level to ERROR so that only real errors break the archiver (and not simple warnings)
Diffstat (limited to 'core/Session.php')
-rw-r--r--core/Session.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Session.php b/core/Session.php
index 24595cd764..d8fa47b4d2 100644
--- a/core/Session.php
+++ b/core/Session.php
@@ -115,7 +115,7 @@ class Session extends Zend_Session
parent::start();
register_shutdown_function(array('Zend_Session', 'writeClose'), true);
} catch (Exception $e) {
- Log::warning('Unable to start session: ' . $e->getMessage());
+ Log::error('Unable to start session: ' . $e->getMessage());
$enableDbSessions = '';
if (DbHelper::isInstalled()) {