デバグ用エラー出力の追加

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2349 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
yoshida_teruhisa 2008-09-01 07:24:43 +00:00
parent d64a3838bc
commit 24b8da6fae

View File

@ -557,6 +557,11 @@ static void SYSMi_LoadTitleThreadFunc( TitleProperty *pBootTitle )
default:
// unknown
UTL_SetFatalError(FATAL_ERROR_LOAD_UNKNOWN_BOOTTYPE);
// デバグ用。ERRORLOG_Init()がすでに呼ばれている事前提
ERRORLOG_Printf( "TitleID : %016llx \n", pBootTitle->titleID );
ERRORLOG_Printf( "flags.isValid : %d\n", pBootTitle->flags.isValid );
ERRORLOG_Printf( "flags.bootType : %d\n", pBootTitle->flags.bootType );
ERRORLOG_Printf( "isAppLoadCompl : %d\n", pBootTitle->flags.isAppLoadCompleted );
return;
}