aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/filesystem.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-25 11:37:33 -0400
committerLioncash <mathew1800@gmail.com>2018-04-25 12:35:33 -0400
commit5aafc83cc9ce67b2ee052c22934e63793f37c9a7 (patch)
tree6a27b578560a7c8d5c6fcb254087a8c0be439450 /src/core/file_sys/filesystem.cpp
parentea3151f475e170eaaec3ded306a0fe5c1e5944db (diff)
file-sys: Move logging macros over to the new fmt-capable ones
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 82fdb3c464..87083878b8 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 {};
}
}