From 8569049eb16c9b225f37574c5ddd92421da4c1ec Mon Sep 17 00:00:00 2001 From: Andy Jordan <2226434+andyleejordan@users.noreply.github.com> Date: Wed, 13 Sep 2023 14:35:17 -0700 Subject: [PATCH] Add `None` to `PsesLogLevel` enum So that the extension can start when logging is disabled. Fixes https://github.com/PowerShell/vscode-powershell/issues/4735. --- src/PowerShellEditorServices.Hosting/Configuration/HostLogger.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PowerShellEditorServices.Hosting/Configuration/HostLogger.cs b/src/PowerShellEditorServices.Hosting/Configuration/HostLogger.cs index 79ac55516..7ce6f66a9 100644 --- a/src/PowerShellEditorServices.Hosting/Configuration/HostLogger.cs +++ b/src/PowerShellEditorServices.Hosting/Configuration/HostLogger.cs @@ -26,6 +26,7 @@ public enum PsesLogLevel Normal = 2, Warning = 3, Error = 4, + None = 5 } ///