diff options
| author | 2014-07-02 00:17:08 +0200 | |
|---|---|---|
| committer | 2014-07-02 00:17:08 +0200 | |
| commit | 5b06f6cd944ec56c8cc58b019f07ea65d415224f (patch) | |
| tree | af2483cbb0ed44dd02b1882beb1d112c91e049ab /app/Controllers/indexController.php | |
| parent | 93dbab520d66b407b27e5293d9cce265c5c8c0fb (diff) | |
Minz_Log::NOTICE instead of DEBUG if failing to update cache of unread articles
https://github.com/marienfressinaud/FreshRSS/commit/300c508d9e4732a7c6e8025ee62f934f7ecc5328
Diffstat (limited to 'app/Controllers/indexController.php')
| -rwxr-xr-x | app/Controllers/indexController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/indexController.php b/app/Controllers/indexController.php index 0f244f9b6..c3f39fbe5 100755 --- a/app/Controllers/indexController.php +++ b/app/Controllers/indexController.php @@ -130,7 +130,7 @@ class FreshRSS_index_Controller extends Minz_ActionController { try { $feedDAO->updateCachedValues(); } catch (Exception $ex) { - Minz_Log::record ('Failed to automatically correct nbNotRead! ' + $ex->getMessage(), Minz_Log::DEBUG); + Minz_Log::record ('Failed to automatically correct nbNotRead! ' + $ex->getMessage(), Minz_Log::NOTICE); } $this->view->state = FreshRSS_Entry::STATE_ALL; $entries = $entryDAO->listWhere($getType, $getId, $this->view->state, $order, $nb, $first, $filter, $date_min, true, $keepHistoryDefault); |
