summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/filesystem.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-26 02:39:08 +0200
committerGitHub <noreply@github.com>2018-04-26 02:39:08 +0200
commitd0825c951902d7aecc3c89c7f31f246b75befd95 (patch)
tree1290055a7de22a8107a6e1fe61bcb6447fd337bf /src/core/file_sys/filesystem.cpp
parentMerge pull request #390 from mailwl/pctl-module (diff)
parentfile-sys: convert a StringFromFormat call into fmt::format in GetFullPath() (diff)
downloadyuzu-d0825c951902d7aecc3c89c7f31f246b75befd95.tar
yuzu-d0825c951902d7aecc3c89c7f31f246b75befd95.tar.gz
yuzu-d0825c951902d7aecc3c89c7f31f246b75befd95.tar.bz2
yuzu-d0825c951902d7aecc3c89c7f31f246b75befd95.tar.lz
yuzu-d0825c951902d7aecc3c89c7f31f246b75befd95.tar.xz
yuzu-d0825c951902d7aecc3c89c7f31f246b75befd95.tar.zst
yuzu-d0825c951902d7aecc3c89c7f31f246b75befd95.zip
Diffstat (limited to 'src/core/file_sys/filesystem.cpp')
-rw-r--r--src/core/file_sys/filesystem.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/file_sys/filesystem.cpp b/src/core/file_sys/filesystem.cpp
index 82fdb3c46..87083878b 100644
--- a/src/core/file_sys/filesystem.cpp
+++ b/src/core/file_sys/filesystem.cpp
@@ -71,7 +71,7 @@ std::string Path::AsString() const {
case Binary:
default:
// TODO(yuriks): Add assert
- LOG_ERROR(Service_FS, "LowPathType cannot be converted to string!");
+ NGLOG_ERROR(Service_FS, "LowPathType cannot be converted to string!");
return {};
}
}
@@ -87,7 +87,7 @@ std::u16string Path::AsU16Str() const {
case Invalid:
case Binary:
// TODO(yuriks): Add assert
- LOG_ERROR(Service_FS, "LowPathType cannot be converted to u16string!");
+ NGLOG_ERROR(Service_FS, "LowPathType cannot be converted to u16string!");
return {};
}
@@ -115,7 +115,7 @@ std::vector<u8> Path::AsBinary() const {
case Invalid:
default:
// TODO(yuriks): Add assert
- LOG_ERROR(Service_FS, "LowPathType cannot be converted to binary!");
+ NGLOG_ERROR(Service_FS, "LowPathType cannot be converted to binary!");
return {};
}
}