structlog
structlog copied to clipboard
Simple, powerful, and fast logging for Python.
I am trying out structlog and it is working out quite nicely. There is an issue that I have not found a solution for. I am using the example pytest...
Is it possible to have indentation like in https://github.com/Gbps/fastlog?
This is a follow up to https://github.com/hynek/structlog/issues/297. I put together a small example of how to pass context variables to workers in a pool. It uses [pathos](https://pathos.readthedocs.io/en/latest/pathos.html) to create a...
It may be nice to include support for class name in `CallsiteParameterAdder`, not sure how practical/easy it will be though, or how reliable it is to get the class name...
This is more of a discussion than an issue to be fixed. I have recently refactored how our services log. Other folks might choose to do so too (and we...
Heya, Amazing project. I've started using structlog for all my stuff. This is a really dumb question but I honestly couldn't find it "spelled out" for me anywhere. I'm trying...
Is there a different way, other than accessing a private member like in below snippet? ``` structlog.stdlib.TRACE = TRACE = 5 structlog.stdlib._NAME_TO_LEVEL['trace'] = TRACE logging.addLevelName(TRACE, "TRACE") ``` https://github.com/ethereum/pyethereum/issues/202
Hi, I am trying to understand how to configure this properly. I was combining this with stdlib before, but I have switched my config now according to the example about...
I have a few different applications running at the same time, and I want some of them to use a different "theme" when logging: so I want to change the...
A decorator that creates a log statement with bound variables at entry and exit of the decorated functions. The bound variables can be set, reset or updated, so every log...