Mercurial > silorider
changeset 34:8c513e43673d
Add debug information when an entry is found without a URL
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 10 May 2023 16:10:35 -0700 |
parents | 9e4eb3f2754e |
children | 7965adc14569 |
files | silorider/commands/process.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/silorider/commands/process.py Wed May 10 16:10:12 2023 -0700 +++ b/silorider/commands/process.py Wed May 10 16:10:35 2023 -0700 @@ -53,7 +53,7 @@ def processEntry(self, entry): entry_url = entry.get('url') if not entry_url: - logger.warning("Found entry without a URL.") + logger.warning("Found entry without a URL: %s" % repr(entry._mf_entry)) return if self.isEntryFiltered(entry):