Skip to content

Commit

Permalink
Misc: Set logging level to Trace when starting with CTRL&SHIFT pressed
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotrekol committed Mar 14, 2021
1 parent 320b907 commit a885286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu!StreamCompanion/Code/Core/Initializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public Initializer(string settingsProfileName)
(Control.ModifierKeys & Keys.Control) != 0)
{
Settings.Add(SettingNames.Instance.Console.Name, true, true);
Settings.Add(SettingNames.Instance.LogLevel.Name, LogLevel.Error.GetHashCode(), true);
Settings.Add(SettingNames.Instance.LogLevel.Name, LogLevel.Trace.GetHashCode(), true);
}

var saver = di.Locate<MainSaver>();
Expand Down

0 comments on commit a885286

Please sign in to comment.