Browse Source

Remove debug line
Forgotten from https://github.com/FreshRSS/FreshRSS/pull/5404

Alexandre Alapetite 2 years ago
parent
commit
3bdb897610
1 changed files with 0 additions and 1 deletions
  1. 0 1
      app/Models/EntryDAO.php

+ 0 - 1
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) {