loguru icon indicating copy to clipboard operation
loguru copied to clipboard

Does not work with recent versions of fmtlib

Open fivethousand opened this issue 7 years ago • 2 comments

ArgList does not exist any more in recent versions of fmtlib leading to the obvious compiler error

'fmt::ArgList' has not been declared

when LOGURU_USE_FMTLIB is enabled.

fivethousand avatar May 17 '18 12:05 fivethousand

I think I might rework the fmtlib implementation at some point to have it use a specific suffix like this:

LOG_F(INFO, "Hello %s", "world");
LOG_S(INFO) << "Hello " << "world";
LOG_FMT(INFO, "Hello {}", "world");

when I do that, I will make sure it works with the latest fmtlib.

emilk avatar Sep 18 '18 16:09 emilk

Any news ? still not working :(-

Milerius avatar Apr 16 '19 19:04 Milerius