diff options
| author | 2018-04-25 20:39:08 -0400 | |
|---|---|---|
| committer | 2018-04-25 20:39:08 -0400 | |
| commit | d0825c951902d7aecc3c89c7f31f246b75befd95 (patch) | |
| tree | 1290055a7de22a8107a6e1fe61bcb6447fd337bf /src/core/file_sys/filesystem.cpp | |
| parent | Merge pull request #390 from mailwl/pctl-module (diff) | |
| parent | file-sys: convert a StringFromFormat call into fmt::format in GetFullPath() (diff) | |
| download | yuzu-d0825c951902d7aecc3c89c7f31f246b75befd95.tar.gz yuzu-d0825c951902d7aecc3c89c7f31f246b75befd95.tar.xz yuzu-d0825c951902d7aecc3c89c7f31f246b75befd95.zip | |
Merge pull request #395 from lioncash/file-sys
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.cpp | 6 |
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 { | |||
| 71 | case Binary: | 71 | case Binary: |
| 72 | default: | 72 | default: |
| 73 | // TODO(yuriks): Add assert | 73 | // TODO(yuriks): Add assert |
| 74 | LOG_ERROR(Service_FS, "LowPathType cannot be converted to string!"); | 74 | NGLOG_ERROR(Service_FS, "LowPathType cannot be converted to string!"); |
| 75 | return {}; | 75 | return {}; |
| 76 | } | 76 | } |
| 77 | } | 77 | } |
| @@ -87,7 +87,7 @@ std::u16string Path::AsU16Str() const { | |||
| 87 | case Invalid: | 87 | case Invalid: |
| 88 | case Binary: | 88 | case Binary: |
| 89 | // TODO(yuriks): Add assert | 89 | // TODO(yuriks): Add assert |
| 90 | LOG_ERROR(Service_FS, "LowPathType cannot be converted to u16string!"); | 90 | NGLOG_ERROR(Service_FS, "LowPathType cannot be converted to u16string!"); |
| 91 | return {}; | 91 | return {}; |
| 92 | } | 92 | } |
| 93 | 93 | ||
| @@ -115,7 +115,7 @@ std::vector<u8> Path::AsBinary() const { | |||
| 115 | case Invalid: | 115 | case Invalid: |
| 116 | default: | 116 | default: |
| 117 | // TODO(yuriks): Add assert | 117 | // TODO(yuriks): Add assert |
| 118 | LOG_ERROR(Service_FS, "LowPathType cannot be converted to binary!"); | 118 | NGLOG_ERROR(Service_FS, "LowPathType cannot be converted to binary!"); |
| 119 | return {}; | 119 | return {}; |
| 120 | } | 120 | } |
| 121 | } | 121 | } |