ebonnal / streamable

Expressive iteration in Python: fluent, typed, lazy, and concurrent
Apache License 2.0
5 stars 0 forks source link

I can't get it to print anything or logger.info anything #9

Open diego-ppz opened 1 month ago

ebonnal commented 2 weeks ago

Hi @diego-ppz !

Thank you for your interest in the library🙏🏻 Super strange, could you please provide more details about how you are using the library (e.g. code snippet, library version, python version) ?

Could you confirm that when running this snippet:

import logging
from streamable import Stream
logging.getLogger().setLevel(logging.INFO)
list(Stream(range(3)).foreach(logging.info))

you get:

INFO:root:0
INFO:root:1
INFO:root:2