diff options
| author | 2018-07-08 11:29:05 +0200 | |
|---|---|---|
| committer | 2018-07-08 11:29:05 +0200 | |
| commit | 99dfdbc10d9daa8059fd6c017b1580ad493aa8f6 (patch) | |
| tree | e3070af9257aa22ee3ee1965ee51f227dc102692 /app/Controllers/entryController.php | |
| parent | 82ac9454ddf337b79b41fedae37eaf15e6e0cb12 (diff) | |
Avoid feed credentials in logs (#1949)
* Avoid feed credentials in logs
Related to https://github.com/FreshRSS/FreshRSS/pull/1891
* Changelog 1949
Diffstat (limited to 'app/Controllers/entryController.php')
| -rwxr-xr-x | app/Controllers/entryController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/entryController.php b/app/Controllers/entryController.php index 73e181b07..838ad56ce 100755 --- a/app/Controllers/entryController.php +++ b/app/Controllers/entryController.php @@ -186,7 +186,7 @@ class FreshRSS_entry_Controller extends Minz_ActionController { $nb = $entryDAO->cleanOldEntries($feed->id(), $date_min, $feed_history); if ($nb > 0) { $nb_total += $nb; - Minz_Log::debug($nb . ' old entries cleaned in feed [' . $feed->url() . ']'); + Minz_Log::debug($nb . ' old entries cleaned in feed [' . $feed->url(false) . ']'); } } } |
