diff --git a/src/core/hle/applets/applet.cpp b/src/core/hle/applets/applet.cpp index dc0c00d583..b0db67f89c 100644 --- a/src/core/hle/applets/applet.cpp +++ b/src/core/hle/applets/applet.cpp @@ -62,7 +62,7 @@ ResultCode Applet::Create(Service::APT::AppletId id, applets[id] = std::make_shared(id, std::move(manager)); break; default: - LOG_ERROR(Service_APT, "Could not create applet %u", static_cast(id)); + NGLOG_ERROR(Service_APT, "Could not create applet {}", static_cast(id)); // TODO(Subv): Find the right error code return ResultCode(ErrorDescription::NotFound, ErrorModule::Applet, ErrorSummary::NotSupported, ErrorLevel::Permanent); @@ -114,7 +114,7 @@ void Applet::SendParameter(const Service::APT::MessageParameter& parameter) { if (auto locked = manager.lock()) { locked->CancelAndSendParameter(parameter); } else { - LOG_ERROR(Service_APT, "called after destructing applet manager"); + NGLOG_ERROR(Service_APT, "called after destructing applet manager"); } } diff --git a/src/core/hle/applets/erreula.cpp b/src/core/hle/applets/erreula.cpp index f36ad54e10..3c94794d04 100644 --- a/src/core/hle/applets/erreula.cpp +++ b/src/core/hle/applets/erreula.cpp @@ -11,7 +11,7 @@ namespace Applets { ResultCode ErrEula::ReceiveParameter(const Service::APT::MessageParameter& parameter) { if (parameter.signal != Service::APT::SignalType::Request) { - LOG_ERROR(Service_APT, "unsupported signal %u", static_cast(parameter.signal)); + NGLOG_ERROR(Service_APT, "unsupported signal {}", static_cast(parameter.signal)); UNIMPLEMENTED(); // TODO(Subv): Find the right error code return ResultCode(-1); diff --git a/src/core/hle/applets/mii_selector.cpp b/src/core/hle/applets/mii_selector.cpp index 2cb01f9570..6903d002f8 100644 --- a/src/core/hle/applets/mii_selector.cpp +++ b/src/core/hle/applets/mii_selector.cpp @@ -19,7 +19,7 @@ namespace Applets { ResultCode MiiSelector::ReceiveParameter(const Service::APT::MessageParameter& parameter) { if (parameter.signal != Service::APT::SignalType::Request) { - LOG_ERROR(Service_APT, "unsupported signal %u", static_cast(parameter.signal)); + NGLOG_ERROR(Service_APT, "unsupported signal {}", static_cast(parameter.signal)); UNIMPLEMENTED(); // TODO(Subv): Find the right error code return ResultCode(-1); diff --git a/src/core/hle/applets/mint.cpp b/src/core/hle/applets/mint.cpp index a7132ac283..1d975753f9 100644 --- a/src/core/hle/applets/mint.cpp +++ b/src/core/hle/applets/mint.cpp @@ -11,7 +11,7 @@ namespace Applets { ResultCode Mint::ReceiveParameter(const Service::APT::MessageParameter& parameter) { if (parameter.signal != Service::APT::SignalType::Request) { - LOG_ERROR(Service_APT, "unsupported signal %u", static_cast(parameter.signal)); + NGLOG_ERROR(Service_APT, "unsupported signal {}", static_cast(parameter.signal)); UNIMPLEMENTED(); // TODO(Subv): Find the right error code return ResultCode(-1); diff --git a/src/core/hle/applets/swkbd.cpp b/src/core/hle/applets/swkbd.cpp index 36c29854e3..241f4e8451 100644 --- a/src/core/hle/applets/swkbd.cpp +++ b/src/core/hle/applets/swkbd.cpp @@ -22,7 +22,7 @@ namespace Applets { ResultCode SoftwareKeyboard::ReceiveParameter(Service::APT::MessageParameter const& parameter) { if (parameter.signal != Service::APT::SignalType::Request) { - LOG_ERROR(Service_APT, "unsupported signal %u", static_cast(parameter.signal)); + NGLOG_ERROR(Service_APT, "unsupported signal {}", static_cast(parameter.signal)); UNIMPLEMENTED(); // TODO(Subv): Find the right error code return ResultCode(-1);