From 66d65d65dd2059823686d80216eb2796675c49c3 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 22 Jun 2025 23:21:02 -0400 Subject: [PATCH] Add debug to client set config --- app/drb_cdb_api.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/drb_cdb_api.py b/app/drb_cdb_api.py index c0d3ee8..acb1fb1 100644 --- a/app/drb_cdb_api.py +++ b/app/drb_cdb_api.py @@ -46,8 +46,9 @@ class DRBCDBAPI(BaseAPI): config_data: A ConfigGenerator object representing the configuration data. """ # Convert the ConfigGenerator object to a dictionary before sending as JSON - print(f"Generate OP25 config") - return await self._post("/op25/generate-config", data=config_data.to_dict()) + config_data = config_data.to_dict() + print(f"Generate OP25 config", config_data) + return await self._post("/op25/generate-config", data=config_data) # --- Pulse Audio Endpoints ---