From 0d0456833b40a9cfa80aa2b369c78f2aab0730ff Mon Sep 17 00:00:00 2001 From: Kevin Hartman Date: Sat, 21 Feb 2015 21:23:28 -0800 Subject: [PATCH] Replaced debug break/pause with a critical log message. --- src/core/hle/service/srv.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp index 471091e65..1b2126285 100644 --- a/src/core/hle/service/srv.cpp +++ b/src/core/hle/service/srv.cpp @@ -41,10 +41,9 @@ static void GetServiceHandle(Service::Interface* self) { cmd_buff[3] = Kernel::g_handle_table.Create(it->second).MoveFrom(); LOG_TRACE(Service_SRV, "called port=%s, handle=0x%08X", port_name.c_str(), cmd_buff[3]); } else { - LOG_ERROR(Service_SRV, "(UNIMPLEMENTED) called port=%s", port_name.c_str()); - - // Note: developers should add the corresponding service interface implementation when this is hit - UNIMPLEMENTED(); + // Note: A corresponding service interface stub/implementation should be added when + // unknown services are discovered and logged here. + LOG_CRITICAL(Service_SRV, "(UNIMPLEMENTED) called port=%s. Please add a corresponding interface.", port_name.c_str()); // Return the stubbed (empty) service so that applications can continue cmd_buff[3] = Kernel::g_handle_table.Create(Service::g_stub_service).MoveFrom();