Skip to content

Commit 96df833

Browse files
committed
remove logger from unpacker
1 parent 6bb6268 commit 96df833

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

tests/connection/connection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from yaqd_core import Base
1+
from yaqd_core import IsDaemon
22

33

4-
class ConnectionTest(Base):
4+
class ConnectionTest(IsDaemon):
55
_kind = "connection-test"
66

77
def echo(self, s: str):

yaqd-core/yaqd_core/avrorpc/unpacker.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ async def __anext__(self):
6868
await self.new_data.wait()
6969

7070
async def __aexit__(self, exc_type, exc_val, exc_tb):
71-
logger.info("closing")
7271
await asyncio.sleep(0)
7372
self._file.close()
7473
self.buf.close()

0 commit comments

Comments
 (0)