diff options
| author | 2018-04-25 11:37:33 -0400 | |
|---|---|---|
| committer | 2018-04-25 12:35:33 -0400 | |
| commit | 5aafc83cc9ce67b2ee052c22934e63793f37c9a7 (patch) | |
| tree | 6a27b578560a7c8d5c6fcb254087a8c0be439450 /src/core/file_sys/filesystem.cpp | |
| parent | Merge pull request #388 from bunnei/refactor-rasterizer-cache (diff) | |
| download | yuzu-5aafc83cc9ce67b2ee052c22934e63793f37c9a7.tar.gz yuzu-5aafc83cc9ce67b2ee052c22934e63793f37c9a7.tar.xz yuzu-5aafc83cc9ce67b2ee052c22934e63793f37c9a7.zip | |
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 | } |