From e78aff7d96a0e08e15db9b07741fd86802611483 Mon Sep 17 00:00:00 2001 From: Aireil <33433913+Aireil@users.noreply.github.com> Date: Sat, 19 Dec 2020 23:27:39 +0100 Subject: [PATCH] Change sig method log level and add session delimiter in logs --- Dalamud/EntryPoint.cs | 1 + Dalamud/Interface/InterfaceManager.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dalamud/EntryPoint.cs b/Dalamud/EntryPoint.cs index 3e09596cc..f7043fe7a 100644 --- a/Dalamud/EntryPoint.cs +++ b/Dalamud/EntryPoint.cs @@ -20,6 +20,7 @@ namespace Dalamud { Log.Logger = logger; try { + Log.Information(new string('-', 200)); Log.Information("Initializing a session.."); // This is due to GitHub not supporting TLS 1.0, so we enable all TLS versions globally diff --git a/Dalamud/Interface/InterfaceManager.cs b/Dalamud/Interface/InterfaceManager.cs index 3e34a16ae..51c0da80b 100644 --- a/Dalamud/Interface/InterfaceManager.cs +++ b/Dalamud/Interface/InterfaceManager.cs @@ -73,7 +73,7 @@ namespace Dalamud.Interface Address = sigResolver; } catch (Exception ex) { // The SigScanner method fails on wine/proton since DXGI is not a real DLL. We fall back to vtable to detect our Present function address. - Log.Error(ex, "Could not get SwapChain address via sig method, falling back to vtable..."); + Log.Debug(ex, "Could not get SwapChain address via sig method, falling back to vtable..."); var vtableResolver = new SwapChainVtableResolver(); vtableResolver.Setup(scanner);