Better XMsg errors.

This commit is contained in:
Ben Vanik 2014-08-05 10:44:55 -07:00
parent 86241d0ae8
commit 2854841753
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ SHIM_CALL XMsgInProcessCall_shim(
auto result = state->app_manager()->DispatchMessageSync( auto result = state->app_manager()->DispatchMessageSync(
app, message, arg1, arg2); app, message, arg1, arg2);
if (result == X_ERROR_NOT_FOUND) { if (result == X_ERROR_NOT_FOUND) {
XELOGE("XMsgStartIORequest: app not found"); XELOGE("XMsgInProcessCall: app %.8X undefined", app);
} }
SHIM_SET_RETURN_32(result); SHIM_SET_RETURN_32(result);
} }
@ -61,7 +61,7 @@ SHIM_CALL XMsgStartIORequest_shim(
auto result = state->app_manager()->DispatchMessageAsync( auto result = state->app_manager()->DispatchMessageAsync(
app, message, buffer, buffer_length); app, message, buffer, buffer_length);
if (result == X_ERROR_NOT_FOUND) { if (result == X_ERROR_NOT_FOUND) {
XELOGE("XMsgStartIORequest: app not found"); XELOGE("XMsgStartIORequest: app %.8X undefined", app);
} }
SHIM_SET_RETURN_32(result); SHIM_SET_RETURN_32(result);
} }