diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-10-19 16:24:02 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-10-19 16:24:02 -0700 |
commit | d916a3c6b99e74845aff8d0edc9709fd86f8d9b6 (patch) | |
tree | 82d96ba32c1c198c48413e02be59bac3792be6b2 /python | |
parent | 9c39bb6469843825efe67f5e4849cab5ea1eea9d (diff) | |
download | sandcrawler-d916a3c6b99e74845aff8d0edc9709fd86f8d9b6.tar.gz sandcrawler-d916a3c6b99e74845aff8d0edc9709fd86f8d9b6.zip |
SPN: better log line when starting a request
Diffstat (limited to 'python')
-rw-r--r-- | python/sandcrawler/ia.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/sandcrawler/ia.py b/python/sandcrawler/ia.py index 0067b7e..0bc3a97 100644 --- a/python/sandcrawler/ia.py +++ b/python/sandcrawler/ia.py @@ -836,6 +836,7 @@ class SavePageNowClient: "Didn't get expected 'job_id' field in SPN2 response: {}".format(resp_json)) job_id = resp_json['job_id'] + print(f" SPNv2 running: job_id={job_id} url={request_url}", file=sys.stdout) # poll until complete final_json = None |