Jeremy McMinis

Results 7 comments of Jeremy McMinis

> I think I'm ok with this! could you provide an example of a user being able to easily use the logger for stdout? I want to make sure that...

@jerryjliu I updated a notebook, examples/vector_indices/SimpleIndexDemo.ipynb, with an example. Let me know what you think. I also added a line in the docs quickstart, and updated the rest of the...

@jerryjliu sure. I like logging for production use cases. For the notebook, I agree, it feels a little weird. I think they two of us have slightly different perspectives on...

https://twitter.com/JeremyMcminis thanks!

I'm thinking, get rid of verbose and use debug instead. Seem reasonable? ```python verbose = delete_kwargs.pop("verbose", False) if verbose: print(f"> Deleting document: {doc_id}") ``` becomes ```python logging.debug(f"> Deleting document: {doc_id}")...

One option for this: using log level DEBUG if #391 is merged in

it's actually missing from the [`_init__.py`](https://github.com/hwchase17/langchain/blob/master/langchain/__init__.py#L25) file on the langchain side. it's their bug.