1
0
mirror of https://github.com/craigerl/aprsd.git synced 2025-08-02 13:42:26 -04:00

LOG failed requests post to admin ui

This commit is contained in:
Hemna 2024-04-08 13:07:15 -04:00
parent 6845d266f2
commit da882b4f9b

View File

@ -27,8 +27,9 @@ def send_log_entries(force=False):
json=entries, json=entries,
auth=(CONF.admin.user, CONF.admin.password), auth=(CONF.admin.user, CONF.admin.password),
) )
except Exception: except Exception as ex:
pass LOG.warning(f"Failed to send log entries {len(entries)}")
LOG.warning(ex)
class LogEntries: class LogEntries: