Use UTF-8 in console

This commit is contained in:
nishinji 2024-09-25 23:55:25 +09:00
commit 900e90efa8

View file

@ -142,6 +142,10 @@ public:
instance = std::unique_ptr<Impl, decltype(&Deleter)>(new Impl(log_dir / LOG_FILE, filter), instance = std::unique_ptr<Impl, decltype(&Deleter)>(new Impl(log_dir / LOG_FILE, filter),
Deleter); Deleter);
initialization_in_progress_suppress_logging = false; initialization_in_progress_suppress_logging = false;
#ifdef WIN32
// set console codepage to UTF-8
SetConsoleOutputCP(65001);
#endif
} }
static bool IsActive() { static bool IsActive() {