refactor: better log messages

This commit is contained in:
goat 2021-01-26 15:52:37 +01:00
parent 216ce04a74
commit 484e4579be

View file

@ -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.");
}
}