aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Services/Vi
diff options
context:
space:
mode:
authoremmauss <emmausssss@gmail.com>2018-04-14 04:02:24 +0300
committergdkchan <gab.dark.100@gmail.com>2018-04-13 22:02:24 -0300
commitbbcad307bdb8edca121ef6e3d2b13196fdd96a2d (patch)
treefc67010d2fc210fe041829f894659e30d48ac4b8 /Ryujinx.Core/OsHle/Services/Vi
parent435f9ffad8b87ae29f1735a200a5838e961163bd (diff)
Add logclass, made changes to logging calls (#79)
* add logclass, made changes to logging calls * made enum parsing case insensitive * enable logclass on partial or complete match
Diffstat (limited to 'Ryujinx.Core/OsHle/Services/Vi')
-rw-r--r--Ryujinx.Core/OsHle/Services/Vi/NvFlinger.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.Core/OsHle/Services/Vi/NvFlinger.cs b/Ryujinx.Core/OsHle/Services/Vi/NvFlinger.cs
index 4ab64e2a..3ba4a45f 100644
--- a/Ryujinx.Core/OsHle/Services/Vi/NvFlinger.cs
+++ b/Ryujinx.Core/OsHle/Services/Vi/NvFlinger.cs
@@ -112,7 +112,7 @@ namespace Ryujinx.Core.OsHle.Services.Android
if (Commands.TryGetValue((InterfaceName, Code), out ServiceProcessParcel ProcReq))
{
- Logging.Debug($"{InterfaceName} {ProcReq.Method.Name}");
+ Logging.Debug(LogClass.ServiceNv, $"{InterfaceName} {ProcReq.Method.Name}");
return ProcReq(Context, Reader);
}
@@ -412,7 +412,7 @@ namespace Ryujinx.Core.OsHle.Services.Android
break;
}
- Logging.Debug("Waiting for a free BufferQueue slot...");
+ Logging.Debug(LogClass.ServiceNv, "Waiting for a free BufferQueue slot...");
if (Disposed)
{
@@ -426,7 +426,7 @@ namespace Ryujinx.Core.OsHle.Services.Android
}
while (!Disposed);
- Logging.Debug($"Found free BufferQueue slot {Slot}!");
+ Logging.Debug(LogClass.ServiceNv, $"Found free BufferQueue slot {Slot}!");
return Slot;
}