aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/LogManager/Ipc/LogService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Horizon/LogManager/Ipc/LogService.cs')
-rw-r--r--src/Ryujinx.Horizon/LogManager/Ipc/LogService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Horizon/LogManager/Ipc/LogService.cs b/src/Ryujinx.Horizon/LogManager/Ipc/LogService.cs
index 9ac9c27e..c266d0e9 100644
--- a/src/Ryujinx.Horizon/LogManager/Ipc/LogService.cs
+++ b/src/Ryujinx.Horizon/LogManager/Ipc/LogService.cs
@@ -11,7 +11,7 @@ namespace Ryujinx.Horizon.LogManager.Ipc
[CmifCommand(0)]
public Result OpenLogger(out LmLogger logger, [ClientProcessId] ulong pid)
{
- // NOTE: Internal name is Logger, but we rename it LmLogger to avoid name clash with Ryujinx.Common.Logging logger.
+ // NOTE: Internal name is Logger, but we rename it to LmLogger to avoid name clash with Ryujinx.Common.Logging logger.
logger = new LmLogger(this, pid);
return Result.Success;