spdlog-python
spdlog-python copied to clipboard
python wrapper around C++ spdlog ([email protected]:gabime/spdlog.git)
Hi all, I'm currently evaluating spdlog-python as a replacement for logging in the python standard library. Looking at the documentation from spdlog for [custom formatting](https://github.com/gabime/spdlog/wiki/3.-Custom-formatting), it seems like there are...
This PR adds binds for dist_sink (distribution sink; mux), and duplicate message filter sink, essentially relating to the spdlog feature request mentioned here: https://github.com/gabime/spdlog/issues/696#issuecomment-506512858. Code to get equivalent behaviour in...
``` python3 setup.py install /home/linuxbrew/.linuxbrew/Cellar/[email protected]/3.10.9/lib/python3.10/site-packages/setuptools/installer.py:27: SetuptoolsDeprecationWarning: setuptools.installer is deprecated. Requirements should be satisfied by a PEP 517 installer. warnings.warn( running install /home/linuxbrew/.linuxbrew/Cellar/[email protected]/3.10.9/lib/python3.10/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and...
When multiple clients concurrently record data, if the "routate" parameter is set too small, there is a chance of error occurring, which can lead to loss of logs. we set...
For projects involving python wrappers to C++ libraries, it is useful to have the include header locations. Currently, when spdlog is installed with pip, the headers are located in the...
is it possible to have a custom time function? when using the built in logging module I do: `logging.Formatter.converter = custom_time_func` I am not sure how to accomplish this using...
It would be good if, instead of relying on a submodule, this package could detect an existing installation of spdlog. Such an installation can be detected for instance using Python's...
I had to disable flush() on async mode logger due to never returning from it... Will have to look into why this happens.