1
0
forked from MeloNX/MeloNX

Move kernel syscall logs to new trace log level (#3137)

This commit is contained in:
gdkchan 2022-02-17 22:14:05 -03:00 committed by GitHub
parent 907a614c35
commit ab24d2622b

View File

@ -459,11 +459,11 @@ namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
{
if (argValues != null)
{
Logger.Debug?.Print(LogClass.KernelSvc, string.Format(formatOrSvcName, argValues));
Logger.Trace?.Print(LogClass.KernelSvc, string.Format(formatOrSvcName, argValues));
}
else
{
Logger.Debug?.Print(LogClass.KernelSvc, formatOrSvcName);
Logger.Trace?.Print(LogClass.KernelSvc, formatOrSvcName);
}
}