Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/pyget/log.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
logging handler with rotating file sets

:copyright: (c) 2024 APF20

:license: MIT License
"""

import logging as Logging
from logging.handlers import RotatingFileHandler

Expand Down
1 change: 0 additions & 1 deletion tests/test_pyget.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ def tearDownClass(cls):
asyncio.run(cls.session.tearDown())

async def ws_callback(msg):
print(f'wsCB: {msg}')
pass

async def test_websocket(self):
Expand Down