1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 20:01:28 +00:00

bump up debugging in daemon

This commit is contained in:
Andrew Dolgov
2007-03-14 15:50:28 +01:00
parent 76e8393b0a
commit 219bd8fcfc
2 changed files with 26 additions and 4 deletions

View File

@@ -362,6 +362,10 @@
return;
}
if (defined('DAEMON_EXTENDED_DEBUG')) {
print "update_rss_feed: start\n";
}
$result = db_query($link, "SELECT update_interval,auth_login,auth_pass
FROM ttrss_feeds WHERE id = '$feed'");
@@ -386,10 +390,22 @@
}
error_reporting(0);
if (defined('DAEMON_EXTENDED_DEBUG')) {
print "update_rss_feed: fetching...\n";
}
if (!defined('DAEMON_EXTENDED_DEBUG')) {
error_reporting(0);
}
$rss = fetch_rss($fetch_url);
error_reporting (DEFAULT_ERROR_LEVEL);
if (defined('DAEMON_EXTENDED_DEBUG')) {
print "update_rss_feed: fetch done, parsing...\n";
} else {
error_reporting (DEFAULT_ERROR_LEVEL);
}
$feed = db_escape_string($feed);
if ($rss) {
@@ -840,6 +856,10 @@
last_updated = NOW() WHERE id = '$feed'");
}
if (defined('DAEMON_EXTENDED_DEBUG')) {
print "update_rss_feed: done\n";
}
}
function print_select($id, $default, $values, $attributes = "") {