diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2019-07-02 10:52:31 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2019-07-02 10:52:31 +0200 |
commit | bdcfa688dc3c4ad71afaeeef66c5470d57daffeb (patch) | |
tree | b29bc39a4ac3e4097ca2e5181d9076c3cb6b2d0e /crocoite | |
parent | 6e537f22f0b1b8f7d5f5ff4b5f3571c4a7dc7a6f (diff) | |
download | crocoite-bdcfa688dc3c4ad71afaeeef66c5470d57daffeb.tar.gz crocoite-bdcfa688dc3c4ad71afaeeef66c5470d57daffeb.tar.bz2 crocoite-bdcfa688dc3c4ad71afaeeef66c5470d57daffeb.zip |
behavior: Add missing uuid’s to logging call
Diffstat (limited to 'crocoite')
-rw-r--r-- | crocoite/behavior.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/crocoite/behavior.py b/crocoite/behavior.py index efb2ced..4d89ae7 100644 --- a/crocoite/behavior.py +++ b/crocoite/behavior.py @@ -259,9 +259,12 @@ class DomSnapshot (Behavior): if url in haveUrls: # ignore duplicate URLs. they are usually caused by # javascript-injected iframes (advertising) with no(?) src - self.logger.warning (f'have DOM snapshot for URL {url}, ignoring') + self.logger.warning ('dom snapshot duplicate', + uuid='d44de989-98d4-456e-82e7-9d4c49acab5e') elif url.scheme in ('http', 'https'): - self.logger.debug (f'saving DOM snapshot for url {url}, base {doc["baseURL"]}') + self.logger.debug ('dom snapshot', + uuid='ece7ff05-ccd9-44b5-b6a8-be25a24b96f4', + base=doc["baseURL"]) haveUrls.add (url) walker = ChromeTreeWalker (doc) # remove script, to make the page static and noscript, because at the |