@@ -218,7 +218,7 @@ async def _async_send_json(self, payload: dict[str, Any]) -> None:
218218 )
219219 # Hilo added a control character (chr(30)) at the end of each payload they send.
220220 # They also expect this char to be there at the end of every payload we send them.
221- LOG .debug (f"ic-dev21 send_json { payload } " )
221+ LOG .debug (f"WebsocketClient _async_send_json payload: { payload } " )
222222 await self ._client .send_str (json .dumps (payload ) + chr (30 ))
223223
224224 def _parse_message (self , msg : dict [str , Any ]) -> None :
@@ -378,7 +378,7 @@ async def async_invoke(
378378 return
379379 self ._ready_event .clear ()
380380 LOG .debug (
381- f"ic-dev21 invoke argument: { arg } , invocationId: { inv_id } , target: { target } , type: { type } "
381+ f"async_invoke invoke argument: { arg } , invocationId: { inv_id } , target: { target } , type: { type } "
382382 )
383383 await self ._async_send_json (
384384 {
@@ -436,9 +436,7 @@ def __init__(
436436
437437 async def initialize_websockets (self ) -> None :
438438 """Initialize both websocket connections"""
439- # ic-dev21 get token from device hub
440439 await self .refresh_token (self .devicehub , get_new_token = True )
441- # ic-dev21 get token from challenge hub
442440 await self .refresh_token (self .challengehub , get_new_token = True )
443441
444442 async def refresh_token (
0 commit comments