fix support for utf8 logging under win32

This commit is contained in:
gabime
2019-04-05 23:34:55 +03:00
parent e9f34fbd26
commit 2aceb13f3e
5 changed files with 184 additions and 162 deletions

View File

@@ -14,5 +14,5 @@ spdlog::logger *get_logger();
int main(int, char *[])
{
auto *l = get_logger();
l->info("HE LO ", "GA");
l->info(L"HEllo {}", L"HGFS");
}