diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-02-23 23:55:58 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-02-23 23:55:58 +0000 |
commit | 127cbcfafd91dca1c4211cbb15a881d782747214 (patch) | |
tree | 34576c27598d07488e6a1416556665bf06275432 /lib | |
parent | Add timeouts to more geoData tests (diff) | |
download | ilt-127cbcfafd91dca1c4211cbb15a881d782747214.tar.bz2 ilt-127cbcfafd91dca1c4211cbb15a881d782747214.tar.xz ilt-127cbcfafd91dca1c4211cbb15a881d782747214.zip |
Add CLOGf for formatting logger
Diffstat (limited to 'lib')
-rw-r--r-- | lib/stream_support.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/stream_support.h b/lib/stream_support.h index f5c5e37..5f276fd 100644 --- a/lib/stream_support.h +++ b/lib/stream_support.h @@ -115,3 +115,4 @@ namespace { } #define CLOG(x) clogImpl(x, #x) +#define CLOGf(...) clogImpl(std::format(__VA_ARGS__), "msg") |