core/loader: Migrate logging macros

Replace logging to use NGLOG instead of LOG.
This commit is contained in:
Daniel Lim Wee Soong
2018-03-29 00:08:26 +08:00
parent 74465389f3
commit fbfc1103fd
4 changed files with 29 additions and 29 deletions

View File

@@ -156,7 +156,7 @@ ResultStatus AppLoader_NCCH::Load(Kernel::SharedPtr<Kernel::Process>& process) {
ReadProgramId(ncch_program_id);
std::string program_id{Common::StringFromFormat("%016" PRIX64, ncch_program_id)};
LOG_INFO(Loader, "Program ID: %s", program_id.c_str());
NGLOG_INFO(Loader, "Program ID: {}", program_id);
update_ncch.OpenFile(Service::AM::GetTitleContentPath(Service::FS::MediaType::SDMC,
ncch_program_id | UPDATE_MASK));