mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 22:50:26 +00:00
Add log message after remote server request
This might be handy to detect remote server problems or debugging timeouts and the like.
This commit is contained in:
parent
1cd423041c
commit
81bfde5a79
@ -1,3 +1,4 @@
|
|||||||
|
import logging
|
||||||
import re
|
import re
|
||||||
import json
|
import json
|
||||||
import requests
|
import requests
|
||||||
@ -48,6 +49,8 @@ def fetch_remote(remote_url,
|
|||||||
timeout=timeout,
|
timeout=timeout,
|
||||||
data=data,
|
data=data,
|
||||||
params=params)
|
params=params)
|
||||||
|
logging.debug('Querying remote server "{0}" ({1}) finished with code {2} (took {3:.3f}s)'.format(
|
||||||
|
remote_url, method, r.status_code, r.elapsed.total_seconds()))
|
||||||
try:
|
try:
|
||||||
if r.status_code not in (200, 201, 204, 400, 409, 422):
|
if r.status_code not in (200, 201, 204, 400, 409, 422):
|
||||||
r.raise_for_status()
|
r.raise_for_status()
|
||||||
|
Loading…
Reference in New Issue
Block a user