fmtlog icon indicating copy to clipboard operation
fmtlog copied to clipboard

fmtlog is a performant fmtlib-style logging library with latency in nanoseconds.

Results 26 fmtlog issues
Sort by recently updated
recently updated
newest added

clang-cl.exe with flags ``` add_compile_options("/clang:-march=x86-64-v3" "/clang:-fopenmp=libomp" "$" "$" "$" "$" ) ```

According to [this issue](https://github.com/gabime/spdlog/issues/2931) it would be interesting to compare `fmtlog` with *synchronous* `spdlog`

applied this https://github.com/filipdutescu/modern-cpp-template because current cmake script at the project literally sucks. Please, do not lie about that this can be not header-only lib. It IS header only lib. Maybe...

[fast_io](https://github.com/cppfastio/fast_io) maybe it will improve performance and reduce code size proposed macro: `FMTLOG_USE_FAST_IO_LIB`

在 行号后面 带上 函数名。谢谢

VS 2022 ``` fmtlog.h(618): warning C4702: unreachable code fmtlog.h(627): warning C4702: unreachable code fmtlog.h(629): warning C4702: unreachable code fmtlog.h(634): warning C4702: unreachable code fmtlog.h(635): warning C4702: unreachable code fmtlog.h(640): warning...

Hello, I made a small macro to display a debugging log. Except that when you forget to specify the argument after using brackets, it causes an undetected block Example: LOG_DEBUG("{}::blabla")...

Hello, I use fmtlog to write my logs to a terminal in real time via a macro: ```cpp #define LOG_DEBUG(...) \ { \ logd(__VA_ARGS__);\ fmtlog::poll(); \ } ``` The problem...

1>ShineLibhv.cpp 1>G:\C++Project\ShineLibhv\third\include\fmtlog\fmtlog.h(595,32): error C2589: “(”:“::”右边的非法标记 1>G:\C++Project\ShineLibhv\third\include\fmtlog\fmtlog.h(598,1): message : 查看对正在编译的 类 模板 实例化“std::vector”的引用 1>G:\C++Project\ShineLibhv\third\include\fmtlog\fmtlog.h(721,2): message : 查看对正在编译的 类 模板 实例化“fmtlogT”的引用 1>C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.35.32215\include\vector(497,5): fatal error C1903: 无法从以前的错误中恢复;正在停止编译 感觉是和 minwindef.h 的...