pull/656/merge
terry zhao 8 years ago committed by GitHub
commit 155ef7e1a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -217,11 +217,11 @@ inline void spdlog::logger::log(level::level_enum lvl, const wchar_t* msg)
}
template <typename... Args>
inline void spdlog::logger::log(level::level_enum lvl, const wchar_t* fmt, const Args&... args)
inline void spdlog::logger::log(level::level_enum lvl, const wchar_t* fmtstr, const Args&... args)
{
fmt::WMemoryWriter wWriter;
wWriter.write(fmt, args...);
wWriter.write(fmtstr, args...);
log(lvl, wWriter.c_str());
}

Loading…
Cancel
Save