From f118d5e2223774823fa8e47d6c5f282c4979c839 Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Mon, 2 Mar 2026 10:38:40 -0800 Subject: [PATCH] Add debug log level info --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 301551c..9b9ad66 100644 --- a/README.md +++ b/README.md @@ -300,3 +300,15 @@ npx playwright test --headed # show the browser window ## API Documentation With the backend running: http://localhost:8000/docs + +## Debugging & Bug Reports + +If you're experiencing issues or opening a bug report, please start the backend with debug logging enabled. Debug mode provides a much more detailed breakdown of radio communication, packet processing, and other internal operations, which makes it significantly easier to diagnose problems. + +To start the server with debug logging: + +```bash +MESHCORE_LOG_LEVEL=DEBUG uv run uvicorn app.main:app --host 0.0.0.0 --port 8000 +``` + +Please include the relevant debug log output when filing an issue on GitHub.