2021-05-13 17:38:29 +02:00
|
|
|
|
diff --git a/Ryujinx/Configuration/LoggerModule.cs b/Ryujinx/Configuration/LoggerModule.cs
|
|
|
|
|
index 44631ea0..534576bc 100644
|
|
|
|
|
--- a/Ryujinx/Configuration/LoggerModule.cs
|
|
|
|
|
+++ b/Ryujinx/Configuration/LoggerModule.cs
|
|
|
|
|
@@ -1,6 +1,7 @@
|
|
|
|
|
using Ryujinx.Common;
|
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
+using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Configuration
|
|
|
|
|
{
|
|
|
|
|
@@ -74,7 +75,7 @@ namespace Ryujinx.Configuration
|
2020-07-31 13:34:41 +02:00
|
|
|
|
if (e.NewValue)
|
|
|
|
|
{
|
|
|
|
|
Logger.AddTarget(new AsyncLogTargetWrapper(
|
|
|
|
|
- new FileLogTarget(AppDomain.CurrentDomain.BaseDirectory, "file"),
|
2020-10-21 14:19:52 +02:00
|
|
|
|
+ new FileLogTarget(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Ryujinx"), "file"),
|
2020-07-31 13:34:41 +02:00
|
|
|
|
1000,
|
|
|
|
|
AsyncLogTargetOverflowAction.Block
|
|
|
|
|
));
|