int main()
{
std::map<std::string, std::string> o;
o["foo"] = "foo value";
spdlog::info(o);
return 0;
}
Got error: static_assert failed due to requirement 'formattable' "Cannot format argument. To make type T formattable provide a formatter specialization: https://fmt.dev/latest/api.html#formatting-user-defined-types"