Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 678 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 678 Bytes

noblklog

Keep using the logging you're accustomed to, without having to fear it blocking your asyncio event loop.

import asyncio
import logging
import noblklog

logging.basicConfig(
    level=logging.INFO,
    handlers=[
        noblklog.AsyncStreamHandler(),
    ],
)
log = logging.getLogger(None)

log.info('It is logging synchronously outside an event loop! Magic!')

async def main():
    log.info('And asynchronously inside an event loop! Even more magic!')

asyncio.run(main())

For more details see the documentation.