From 10d27036a292ba9b08f1cc4aa26ffdc7f2150e84 Mon Sep 17 00:00:00 2001 From: Stephen Damm <421822+halsafar@users.noreply.github.com> Date: Sat, 4 Aug 2018 17:53:56 -0600 Subject: [PATCH] Update README. Turn down logging. --- README.md | 4 ++++ SongBrowserPlugin/Logger.cs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b5a4e2..80fb7a4 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ A plugin for customizing the in-game song browser. ![Alt text](/Screenshot.png?raw=true "Screenshot") ## Features +- Playlist! + - BeatDrop playlists! + - Search: BeatSaber_InstallationFolder/Playlists + - Search: BeatDrop Playlist Folder - Folders! Organize your songs into folders. - Marking a song as favorite! - Currently supports these sorting methods: diff --git a/SongBrowserPlugin/Logger.cs b/SongBrowserPlugin/Logger.cs index 92acbf3..cb1e24f 100644 --- a/SongBrowserPlugin/Logger.cs +++ b/SongBrowserPlugin/Logger.cs @@ -15,7 +15,7 @@ public enum LogLevel public class Logger { private string loggerName; - private LogLevel _LogLevel = LogLevel.Trace; + private LogLevel _LogLevel = LogLevel.Info; private ConsoleColor _defaultFgColor; public Logger(string _name)