spdlog_setup icon indicating copy to clipboard operation
spdlog_setup copied to clipboard

spdlog setup initialization via file configuration for convenience.

Results 30 spdlog_setup issues
Sort by recently updated
recently updated
newest added

This is caused by the missing last argument. This argument is added to syslog sink constructor in commit https://github.com/gabime/spdlog/commit/e68cf1c9ed9aa64d23488bfd970a850a32666733 . https://github.com/guangie88/spdlog_setup/blob/master/include/spdlog_setup/details/conf_impl.h#L861 ```cpp return make_shared(ident, syslog_option, syslog_facility); ``` Adding a boolean...

Hello, thank you for your great work. I've kept wondering why you are using .toml file, which are less common than for example .yaml file, and more tedious to read...

https://github.com/fmtlib/fmt/issues/1788 Need to be applied in the function from_file_and_override_with_tag_replacement

linked dll with big size, it take 16MB in mingw, and 2M in vs2019, only with demo

I have build spdlog library separately and copied the exported cmake package of it. I tried to build spdlog_setup librabies unittests using the -DCMAKE_PREFIX_PATH= command line switch. cmake has found...

In my project, I checkout spdlog & spdlog_setup as submodules and use `add_subdirectory` to add them to my project. This works fine on all platforms, but on Windows I get:...

spdlog has the ability to set the [flush policy](https://github.com/gabime/spdlog/wiki/7.-Flush-policy) It would be great to be able to have that control from spdlog_setup as well.

enhancement

If logger with specific name was created prior to call spdlog_setup::from_file_with_tag_replacement and logger with the same name encountered in the toml file - the spdlog library will throw the exception...

- Fix tag replacement portion once templating engine is publicly usable - Remove `fmt` from dependency, since it is no longer part of this repo, but included from `spdlog` instead...

Hi, its a wonderful work here but i was trying to execute the examples given and getting setup error . Can you please help that where should i be saving...