Skip to content

Instantly share code, notes, and snippets.

@diogommartins
Last active October 29, 2018 00:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diogommartins/d6fe452ffc02d67469c588cbe284c559 to your computer and use it in GitHub Desktop.
Save diogommartins/d6fe452ffc02d67469c588cbe284c559 to your computer and use it in GitHub Desktop.
import asyncio
import logging
import sys
async def log_it(logger, content):
logger.info(content)
async def main():
logger = logging.Logger(name='mylogger', level=10)
logger.addHandler(logging.StreamHandler(stream=sys.stdout))
await asyncio.gather(
*(log_it(logger, "Hello world !") for _ in range(10_000))
)
asyncio.run(main())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment