ebonnal / streamable

[Python] Stream-like manipulation of iterables.
Apache License 2.0
131 stars 0 forks source link

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

Closed diego-ppz closed 2 months ago

ebonnal commented 5 months 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
ebonnal commented 2 months ago

Closing for inactivity but feel free to comment back! 🙏🏻