From 4933ad72f227ac7c30968b4abe98fcc2ed11ed31 Mon Sep 17 00:00:00 2001 From: Kevin Trocolli Date: Tue, 9 Jan 2024 03:17:23 -0500 Subject: [PATCH] adb: change warning to debug --- core/aimedb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/aimedb.py b/core/aimedb.py index dbf9761..c5c1837 100644 --- a/core/aimedb.py +++ b/core/aimedb.py @@ -81,7 +81,7 @@ class AimedbServlette(): await self.process_data(data, reader, writer) await writer.drain() except ConnectionResetError as e: - self.logger.warn("Connection reset, disconnecting") + self.logger.debug("Connection reset, disconnecting") return async def process_data(self, data: bytes, reader: asyncio.StreamReader, writer: asyncio.StreamWriter) -> Optional[bytes]: