Skip to content

wagnerflo/noblklog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Non-blocking asyncio handlers for Python logging.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages