diff options
| author | bunnei <bunneidev@gmail.com> | 2018-04-25 20:39:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-25 20:39:08 -0400 |
| commit | d0825c951902d7aecc3c89c7f31f246b75befd95 (patch) | |
| tree | 1290055a7de22a8107a6e1fe61bcb6447fd337bf /src/core/file_sys/partition_filesystem.cpp | |
| parent | 23d68a07dc75a527590ea3c86a4b767554a69777 (diff) | |
| parent | 3f78a61f09c97a115828521f3ee99c3db83c29f8 (diff) | |
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/partition_filesystem.cpp')
| -rw-r--r-- | src/core/file_sys/partition_filesystem.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/file_sys/partition_filesystem.cpp b/src/core/file_sys/partition_filesystem.cpp index 4a58a9291..808254ecc 100644 --- a/src/core/file_sys/partition_filesystem.cpp +++ b/src/core/file_sys/partition_filesystem.cpp @@ -2,7 +2,6 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include <cinttypes> #include <utility> #include "common/file_util.h" #include "common/logging/log.h" @@ -40,7 +39,7 @@ Loader::ResultStatus PartitionFilesystem::Load(const std::string& file_path, siz Loader::ResultStatus result = Load(file_data); if (result != Loader::ResultStatus::Success) - LOG_ERROR(Service_FS, "Failed to load PFS from file %s!", file_path.c_str()); + NGLOG_ERROR(Service_FS, "Failed to load PFS from file {}!", file_path); return result; } |
