You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently use macros for logging. We can enhance our logging experience by replacing these macros with std::source_location and utilizing the <fmt> library for string formatting. This approach allows us to forward string formatting parameters. Here's an implementation from another C++ library I'm working on for reference (note that it's using user-defined a user-defined deduction guide).
We currently use macros for logging. We can enhance our logging experience by replacing these macros with
std::source_location
and utilizing the<fmt>
library for string formatting. This approach allows us to forward string formatting parameters. Here's an implementation from another C++ library I'm working on for reference (note that it's using user-defined a user-defined deduction guide).The text was updated successfully, but these errors were encountered: