From 9bfda43e775ff23d980795363c3c792fd6d8b89d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 12 Apr 2013 09:55:41 +0400 Subject: [PATCH] digest: use proper logging, update.php: fix typo --- include/digest.php | 10 +++++----- update.php | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/digest.php b/include/digest.php index ab29d943..34b69909 100644 --- a/include/digest.php +++ b/include/digest.php @@ -33,7 +33,7 @@ if ($preferred_ts && time() >= $preferred_ts && time() - $preferred_ts <= 7200) { - if ($debug) print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... "; + if ($debug) _debug("Sending digest for UID:" . $line['id'] . " - " . $line["email"]); $do_catchup = get_pref($link, 'DIGEST_CATCHUP', $line['id'], false); @@ -54,16 +54,16 @@ $rc = $mail->quickMail($line["email"], $line["login"] , DIGEST_SUBJECT, $digest, $digest_text); - if (!$rc && $debug) print "ERROR: " . $mail->ErrorInfo; + if (!$rc && $debug) _debug("ERROR: " . $mail->ErrorInfo); - if ($debug) print "RC=$rc\n"; + if ($debug) _debug("RC=$rc"); if ($rc && $do_catchup) { - if ($debug) print "Marking affected articles as read...\n"; + if ($debug) _debug("Marking affected articles as read..."); catchupArticlesById($link, $affected_ids, 0, $line["id"]); } } else { - if ($debug) print "No headlines\n"; + if ($debug) _debug("No headlines"); } db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW() diff --git a/update.php b/update.php index e1afb6bd..4c5bede0 100755 --- a/update.php +++ b/update.php @@ -353,4 +353,4 @@ if (file_exists(LOCK_DIRECTORY . "/$lock_filename")) unlink(LOCK_DIRECTORY . "/$lock_filename"); -g?> +?> -- 2.39.2