diff options
| author | 2015-07-03 23:47:18 +0200 | |
|---|---|---|
| committer | 2015-07-03 23:47:18 +0200 | |
| commit | 079150eee4eebce3549c3d7db84dd0180bdd11e7 (patch) | |
| tree | 0c31f1921c64c0b56e0ca67c9fa6b4e36b2e0020 /app/Controllers/feedController.php | |
| parent | dcadf0dfdfb8730abdfdee2bbf061b984d5ef6b4 (diff) | |
Updated log visibility
In particular, ensure that ERROR is only used for errors that may affect
FreshRSS integrity, and ensure that feed errors are visible also in
production, i.e. visibility of WARNING
https://github.com/FreshRSS/FreshRSS/issues/885
https://github.com/FreshRSS/FreshRSS/issues/884
Diffstat (limited to 'app/Controllers/feedController.php')
| -rwxr-xr-x | app/Controllers/feedController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index b91f63b5b..488d066a9 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -322,7 +322,7 @@ class FreshRSS_feed_Controller extends Minz_ActionController { $feed->load(false); } } catch (FreshRSS_Feed_Exception $e) { - Minz_Log::notice($e->getMessage()); + Minz_Log::warning($e->getMessage()); $feedDAO->updateLastUpdate($feed->id(), true); $feed->unlock(); continue; |
