diff options
| author | Joshi234 <46032261+Joshi234@users.noreply.github.com> | 2021-03-19 00:09:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-19 00:09:33 +0100 |
| commit | a8c945f35fceab2b735afb6b825b327032468e84 (patch) | |
| tree | 44cd38dd21fa2f516e004bfff214d907c225202d /Ryujinx.HLE/HOS | |
| parent | db56b2166d3591eb5d16923b1fcf02733c12420b (diff) | |
Add items to standard logs (#1942)
* Added more items to log
* Update MainWindow.cs
* Added log when changing settings
* fix formating and add log when toggling vsync and docked
* Update Ryujinx/Ui/MainWindow.cs
Co-authored-by: Ac_K <Acoustik666@gmail.com>
* Update Ryujinx/Ui/MainWindow.cs
Co-authored-by: Ac_K <Acoustik666@gmail.com>
* Update Ryujinx/Ui/Windows/SettingsWindow.cs
Co-authored-by: Ac_K <Acoustik666@gmail.com>
* Fix formating
* Change Location according to suggestion
* Implemented OpenDataStorageWithProgramIndex
* Update IFileSystemProxy.cs
* Update IFileSystemProxy.cs
* Commited that file on accidant
* Revert "Merge branch 'master' of https://github.com/Joshi234/Ryujinx"
This reverts commit 375f43045507bc12e743ae1babc6f47bd72987f5, reversing
changes made to 672e2c8f7da28160f2f575a16aaa135d232bf655.
* Revert "Update IFileSystemProxy.cs"
This reverts commit 672e2c8f7da28160f2f575a16aaa135d232bf655.
* Update IFileSystemProxy.cs
* Update ISystemSettingsServer.cs
* removed accidantel addition of IFileSystemProxy.OpenDataStorageWithProgramIndex
* Fix formating and add missing stub
* Update ISystemSettingsServer.cs
* Added more items to log
* Update MainWindow.cs
* Added log when changing settings
* fix formating and add log when toggling vsync and docked
* Fix formating
* Update Ryujinx/Ui/MainWindow.cs
Co-authored-by: Ac_K <Acoustik666@gmail.com>
* Update Ryujinx/Ui/MainWindow.cs
Co-authored-by: Ac_K <Acoustik666@gmail.com>
* Update Ryujinx/Ui/Windows/SettingsWindow.cs
Co-authored-by: Ac_K <Acoustik666@gmail.com>
* Change Location according to suggestion
* Fix Rebase stuff
* Change Logger.Notice to Loger.Info
* Update ISystemSettingsServer.cs
* Update ISystemSettingsServer.cs
Co-authored-by: Ac_K <Acoustik666@gmail.com>
Diffstat (limited to 'Ryujinx.HLE/HOS')
| -rw-r--r-- | Ryujinx.HLE/HOS/Horizon.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Horizon.cs b/Ryujinx.HLE/HOS/Horizon.cs index 4da147bf..39764c5b 100644 --- a/Ryujinx.HLE/HOS/Horizon.cs +++ b/Ryujinx.HLE/HOS/Horizon.cs @@ -9,6 +9,7 @@ using Ryujinx.Audio.Output; using Ryujinx.Audio.Renderer.Device; using Ryujinx.Audio.Renderer.Server; using Ryujinx.Common; +using Ryujinx.Common.Logging; using Ryujinx.Configuration; using Ryujinx.HLE.FileSystem.Content; using Ryujinx.HLE.HOS.Font; @@ -317,6 +318,8 @@ namespace Ryujinx.HLE.HOS // Reconfigure controllers Device.Hid.RefreshInputConfig(ConfigurationState.Instance.Hid.InputConfig.Value); + + Logger.Info?.Print(LogClass.Application, $"IsDocked toggled to: {State.DockedMode}"); } } |
