aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Svc/SvcSystem.cs
diff options
context:
space:
mode:
authoremmauss <emmausssss@gmail.com>2018-04-08 23:30:50 +0300
committergdkchan <gab.dark.100@gmail.com>2018-04-08 17:30:50 -0300
commitb2668e659cb30f098fca2d52befc733bc308705c (patch)
treea4f5df2fe7d398339b1cdb4a06e3633b1e35007a /Ryujinx.Core/OsHle/Svc/SvcSystem.cs
parent36dfd20c879967fc67721ed46ac773d341aa80d9 (diff)
log calling method in logs (#71)
Diffstat (limited to 'Ryujinx.Core/OsHle/Svc/SvcSystem.cs')
-rw-r--r--Ryujinx.Core/OsHle/Svc/SvcSystem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs
index 0b5c97e3..68eebc88 100644
--- a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs
+++ b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs
@@ -221,7 +221,7 @@ namespace Ryujinx.Core.OsHle.Svc
string Str = AMemoryHelper.ReadAsciiString(Memory, Position, Size);
- Logging.Info($"SvcOutputDebugString: {Str}");
+ Logging.Info(Str);
ThreadState.X0 = 0;
}