Closed Mnenmenth closed 3 years ago
spdlog uses {} to represent an argument stand-in in the message string (i.e. spdlog::info("id={}", idVar) but currently the standard printf style formatting is being used (i.e. %s).
{}
spdlog::info("id={}", idVar)
printf
%s
Any instances of this seem to have been removed over time as we noticed them, all are gone by this point
spdlog uses
{}
to represent an argument stand-in in the message string (i.e.spdlog::info("id={}", idVar)
but currently the standardprintf
style formatting is being used (i.e.%s
).