From 438e956be9a34b2867e09a9d336379a9187b4643 Mon Sep 17 00:00:00 2001 From: Username Date: Fri, 20 Feb 2026 09:30:53 +0100 Subject: [PATCH] httpd: log report-proxies 500 errors --- httpd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/httpd.py b/httpd.py index bcb2694..60d7017 100644 --- a/httpd.py +++ b/httpd.py @@ -1780,6 +1780,7 @@ class ProxyAPIServer(threading.Thread): 'processed': processed, }), 'application/json', 200 except Exception as e: + _log('report-proxies error from %s: %s' % (worker_id, e), 'error') return json.dumps({'error': str(e)}), 'application/json', 500 else: