From 5c0fb74aa89282a31a9c33d0c118e2007b9828ec Mon Sep 17 00:00:00 2001 From: ScrubN <72096833+ScrubN@users.noreply.github.com> Date: Sat, 9 Nov 2024 21:59:05 -0500 Subject: [PATCH] Add `All` alias for enabling all log levels in CLI --- TwitchDownloaderCLI/Models/Enums.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TwitchDownloaderCLI/Models/Enums.cs b/TwitchDownloaderCLI/Models/Enums.cs index e004d792..754f5823 100644 --- a/TwitchDownloaderCLI/Models/Enums.cs +++ b/TwitchDownloaderCLI/Models/Enums.cs @@ -5,6 +5,7 @@ namespace TwitchDownloaderCLI.Models [Flags] internal enum LogLevel { + All = Status | Verbose | Info | Warning | Error | Ffmpeg, None = 1 << 0, Status = 1 << 1, Verbose = 1 << 2,