Browse Source

Update README.
Turn down logging.

Stephen Damm 6 years ago
parent
commit
10d27036a2
2 changed files with 5 additions and 1 deletions
  1. 4 0
      README.md
  2. 1 1
      SongBrowserPlugin/Logger.cs

+ 4 - 0
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:

+ 1 - 1
SongBrowserPlugin/Logger.cs

@@ -15,7 +15,7 @@ namespace SongBrowserPlugin
     public class Logger
     {
         private string loggerName;
-        private LogLevel _LogLevel = LogLevel.Trace;
+        private LogLevel _LogLevel = LogLevel.Info;
         private ConsoleColor _defaultFgColor;
 
         public Logger(string _name)