From 2854841753f3667c91ba443806ae0c2234f1a561 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Tue, 5 Aug 2014 10:44:55 -0700 Subject: [PATCH] Better XMsg errors. --- src/xenia/kernel/xam_msg.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xenia/kernel/xam_msg.cc b/src/xenia/kernel/xam_msg.cc index fa24c6e05..a4b61866b 100644 --- a/src/xenia/kernel/xam_msg.cc +++ b/src/xenia/kernel/xam_msg.cc @@ -38,7 +38,7 @@ SHIM_CALL XMsgInProcessCall_shim( auto result = state->app_manager()->DispatchMessageSync( app, message, arg1, arg2); if (result == X_ERROR_NOT_FOUND) { - XELOGE("XMsgStartIORequest: app not found"); + XELOGE("XMsgInProcessCall: app %.8X undefined", app); } SHIM_SET_RETURN_32(result); } @@ -61,7 +61,7 @@ SHIM_CALL XMsgStartIORequest_shim( auto result = state->app_manager()->DispatchMessageAsync( app, message, buffer, buffer_length); if (result == X_ERROR_NOT_FOUND) { - XELOGE("XMsgStartIORequest: app not found"); + XELOGE("XMsgStartIORequest: app %.8X undefined", app); } SHIM_SET_RETURN_32(result); }