# HG changeset patch # User Ludovic Chabant # Date 1683760235 25200 # Node ID 8c513e43673dd45ae89617269723a1153becd657 # Parent 9e4eb3f2754e4461a8d2478dbbabdbf796a04e94 Add debug information when an entry is found without a URL diff -r 9e4eb3f2754e -r 8c513e43673d silorider/commands/process.py --- 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):