Removed temp fix of hard-coded logging level. Now is correctly set via config file

This commit is contained in:
Robert McRackan 2019-12-18 10:50:46 -05:00
parent 4994684690
commit 73c671b7c0
6 changed files with 161 additions and 68 deletions

View file

@ -31,7 +31,7 @@ namespace LibationWinForms.BookLiberation
}
public void AppendText(string text)
{
Serilog.Log.Logger.Debug($"Automated backup: {text}");
Serilog.Log.Logger.Information($"Automated backup: {text}");
appendText(text);
}
private void appendText(string text)