diff options
author | Lioncash <mathew1800@gmail.com> | 2018-04-27 01:12:13 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-04-27 01:14:48 +0200 |
commit | 3062eb52f4b43c4ee861bd944291f1f9aba198df (patch) | |
tree | e21fe52553e8bf09c53631d7694288aaed1ff22c /src/yuzu_cmd/config.cpp | |
parent | Merge pull request #402 from lioncash/core (diff) | |
download | yuzu-3062eb52f4b43c4ee861bd944291f1f9aba198df.tar yuzu-3062eb52f4b43c4ee861bd944291f1f9aba198df.tar.gz yuzu-3062eb52f4b43c4ee861bd944291f1f9aba198df.tar.bz2 yuzu-3062eb52f4b43c4ee861bd944291f1f9aba198df.tar.lz yuzu-3062eb52f4b43c4ee861bd944291f1f9aba198df.tar.xz yuzu-3062eb52f4b43c4ee861bd944291f1f9aba198df.tar.zst yuzu-3062eb52f4b43c4ee861bd944291f1f9aba198df.zip |
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
-rw-r--r-- | src/yuzu_cmd/config.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 8b479bc6d..675f9cafa 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp @@ -27,17 +27,17 @@ bool Config::LoadINI(const std::string& default_contents, bool retry) { const char* location = this->sdl2_config_loc.c_str(); if (sdl2_config->ParseError() < 0) { if (retry) { - LOG_WARNING(Config, "Failed to load %s. Creating file from defaults...", location); + NGLOG_WARNING(Config, "Failed to load {}. Creating file from defaults...", location); FileUtil::CreateFullPath(location); FileUtil::WriteStringToFile(true, default_contents, location); sdl2_config = std::make_unique<INIReader>(location); // Reopen file return LoadINI(default_contents, false); } - LOG_ERROR(Config, "Failed."); + NGLOG_ERROR(Config, "Failed."); return false; } - LOG_INFO(Config, "Successfully loaded %s", location); + NGLOG_INFO(Config, "Successfully loaded {}", location); return true; } |