aboutsummaryrefslogtreecommitdiff
path: root/lib/lib_rss.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-29 10:14:45 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-29 10:14:45 +0100
commit59ea9f2a3b131432236745483e20cb50338110df (patch)
tree68f2de9dca29c33cad40cc60f0d8fcf812579404 /lib/lib_rss.php
parentb355a45c35b366fe2ad56b461dd28b11956ef6d9 (diff)
Remove calls to syslog()
Temporary fix: - Change syslog by Minz_Log::notice in most of the files - Logs are stored in USERS_PATH/_/log.txt for actualize_script.php - Simply comment syslog in SimplePie See https://github.com/FreshRSS/FreshRSS/issues/711
Diffstat (limited to 'lib/lib_rss.php')
-rw-r--r--lib/lib_rss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php
index 083e87745..3b3f6d279 100644
--- a/lib/lib_rss.php
+++ b/lib/lib_rss.php
@@ -180,7 +180,7 @@ function sanitizeHTML($data, $base = '') {
function get_content_by_parsing ($url, $path) {
require_once (LIB_PATH . '/lib_phpQuery.php');
- syslog(LOG_INFO, 'FreshRSS GET ' . $url);
+ Minz_Log::notice('FreshRSS GET ' . $url);
$html = file_get_contents ($url);
if ($html) {