From 484e4579be5baee2247594db24548f915f4a2258 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Tue, 26 Jan 2021 15:52:37 +0100 Subject: [PATCH] refactor: better log messages --- Dalamud/Dalamud.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dalamud/Dalamud.cs b/Dalamud/Dalamud.cs index 5bf074dc5..53781dafc 100644 --- a/Dalamud/Dalamud.cs +++ b/Dalamud/Dalamud.cs @@ -263,7 +263,7 @@ namespace Dalamud { Log.Information("Dalamud is ready."); } catch (Exception ex) { - Log.Error(ex, "Oh no! Dalamud::Start() failed."); + Log.Error(ex, "Dalamud::Start() failed."); Unload(); } } @@ -308,9 +308,9 @@ namespace Dalamud { AntiDebug.Dispose(); - Log.Debug("Dalamud::Dispose OK!"); + Log.Debug("Dalamud::Dispose() OK!"); } catch (Exception ex) { - Log.Error(ex, "skjdgjjkodsfg"); + Log.Error(ex, "Dalamud::Dispose() failed."); } }