change extension of dalamud log file

This commit is contained in:
Cara 2021-02-15 04:02:00 +10:30
parent 903834105a
commit 8bc237536d

View file

@ -56,9 +56,9 @@ namespace Dalamud {
private (Logger logger, LoggingLevelSwitch levelSwitch) NewLogger(string baseDirectory) {
#if DEBUG
var logPath = Path.Combine(baseDirectory, "dalamud.txt");
var logPath = Path.Combine(baseDirectory, "dalamud.log");
#else
var logPath = Path.Combine(baseDirectory, "..", "..", "dalamud.txt");
var logPath = Path.Combine(baseDirectory, "..", "..", "dalamud.log");
#endif
var levelSwitch = new LoggingLevelSwitch();