Removed useless text

This commit is contained in:
Alex 2023-02-21 23:08:16 +02:00
parent 3f3db40026
commit 5c6ba5b6e1
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -208,13 +208,11 @@ void KernelMainThread()
TaskManager->WaitForThread(ret.Thread);
ExitCode = ret.Thread->GetExitCode();
if (ExitCode != 0)
KPrint("\eE85230Userspace process exited with code %d", ExitCode);
error("Userspace process exited with code %d (%#x)", ExitCode, ExitCode);
Exit:
if (ExitCode != 0)
{
KPrint("Dropping to recovery screen...", ExitCode);
KPrint("\eE85230Userspace process exited with code %d", ExitCode);
KPrint("Dropping to recovery screen...");
TaskManager->Sleep(2500);
RecoveryScreen = new Recovery::KernelRecovery;
}