spdlog
spdlog copied to clipboard
Fast C++ logging library.
Hiya I installed spdlog via conan, my version is 1.10.0. When I include my IDE says it cannot find spdlog/fmt/core.h which it says is a dependancy of I made a...
Hello contributors, I want to introduce fmtlib's color implementation into spdlog color_sinks and no need to rely on fmtlib source code and copied into spdlog's source. Converted necessary macros to...
I'm not sure if everybody will want to do this, so this is just a suggestion and something up for discussion. I've included some code below. The `OutputDebugString` function can...
Hi, after updating the spdlog module in my project to v1.10.0 I noticed the following compilation error: ` spdlog/include/spdlog/stopwatch.h:30:24: error: ‘chrono’ in namespace ‘std’ does not name a type 30...
When I #include "spdlog/sinks/dist_sink.h" I get compilation error spdlog/include/spdlog/sinks/dist_sink.h:58: error: declaration of ‘sink’ shadows a member of ‘spdlog::sinks::dist_sink’ [-Werror=shadow] In file included from nclude/spdlog/sinks/dist_sink.h: In instantiation of ‘void spdlog::sinks::dist_sink::sink_it_(const spdlog::details::log_msg&)...
Hi, I would like to know how can I set different formats for each spdlog level. By default, I got this output format: ``` [2022-07-05 14:25:26.685] [info] Welcome to spdlog!...
I use CMake to generate a `ninja.build` file, which I use to try to build the library. However, it fails with the following output: ``` nil@DESKTOP-0K54F8M MINGW64 /path/to/spdlog/build (v1.x) $...
Given that spdlog already supports all the big Operating Systems, it would be great if iOS support was added as well to achieve complete cross-platform compatibility. Are there currently any...
The sink::set_level() expects a level argument. Currently the levels are defined using #define and a normal enumeration. A better way would be to use an enum class for type safety....
When using "%30@" for example, it would be more useful to show the end of the path, instead of cropping the end and showing only the beginning.