aboutsummaryrefslogtreecommitdiff
path: root/app/Models/EntryDAO.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-05-16 12:11:11 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-05-16 12:11:11 +0200
commit3bdb8976106f6e993b53ba4a20692f0dda621f4f (patch)
tree6e5ea202e6acf215549bc0cb8e13cbce5657c1fd /app/Models/EntryDAO.php
parentea503975d5967dd9605f8e8df8a77fc1e5bc2e3a (diff)
Remove debug line
Forgotten from https://github.com/FreshRSS/FreshRSS/pull/5404
Diffstat (limited to 'app/Models/EntryDAO.php')
-rw-r--r--app/Models/EntryDAO.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/Models/EntryDAO.php b/app/Models/EntryDAO.php
index 80101ca24..015d8066c 100644
--- a/app/Models/EntryDAO.php
+++ b/app/Models/EntryDAO.php
@@ -1276,7 +1276,6 @@ SQL;
* @return int|false The number of affected entries, or false if error
*/
public function updateLastSeen(int $id_feed, array $guids, int $mtime = 0) {
- syslog(LOG_DEBUG, __METHOD__ . ' ' . count($guids) . ' ' . $mtime);
if (count($guids) < 1) {
return 0;
} elseif (count($guids) > FreshRSS_DatabaseDAO::MAX_VARIABLE_NUMBER) {