workbench-script: improve err msg for HTTP POST

This commit is contained in:
pedro 2024-09-27 09:17:48 -03:00
parent e527ba611d
commit f617526c34
1 changed files with 2 additions and 2 deletions

View File

@ -288,8 +288,8 @@ def send_snapshot_to_devicehub(snapshot, token, url):
try:
requests.post(url, data=json.dumps(snapshot), headers=headers)
print(f"workbench: INFO: Snapshot sent to '{url}'")
except:
print(f"workbench: ERROR: Snapshot not remotely sent. URL '{url}' is unreachable. Do you have internet? Is your server up & running?")
except Exception as e:
print(f"workbench: ERROR: Snapshot not remotely sent. URL '{url}' is unreachable. Do you have internet? Is your server up & running?\n {e}")
def load_config(config_file="settings.ini"):
"""