Log RPCS3 exit code
This commit is contained in:
+6
-1
@@ -1,6 +1,11 @@
|
|||||||
|
#include "stdafx.h"
|
||||||
#include "rpcs3.h"
|
#include "rpcs3.h"
|
||||||
|
|
||||||
|
LOG_CHANNEL(sys_log, "SYS");
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
return run_rpcs3(argc, argv);
|
const int exit_code = run_rpcs3(argc, argv);
|
||||||
|
sys_log.notice("RPCS3 terminated with exit code %d", exit_code);
|
||||||
|
return exit_code;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user