1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-14 17:06:48 +00:00

Do not print guest stack trace for svcBreak debug calls (#1398)

This commit is contained in:
gdkchan 2020-07-17 23:54:41 -03:00 committed by GitHub
parent 56a61a5758
commit 9d65de74fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1376,9 +1376,7 @@ namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
} }
else else
{ {
Logger.PrintInfo(LogClass.KernelSvc, "Debugger triggered."); Logger.PrintDebug(LogClass.KernelSvc, "Debugger triggered.");
currentThread.PrintGuestStackTrace();
} }
} }