From e9b210ad33bdf28debe0ab94bfb5e17f81a5c4ed Mon Sep 17 00:00:00 2001 From: Stephan Yelle Date: Sat, 31 Jan 2026 17:47:09 -0500 Subject: [PATCH] Update src/archives/logging.fallback.ps1 --- src/{ => archives}/logging.fallback.ps1 | 8 -------- 1 file changed, 8 deletions(-) rename src/{ => archives}/logging.fallback.ps1 (99%) diff --git a/src/logging.fallback.ps1 b/src/archives/logging.fallback.ps1 similarity index 99% rename from src/logging.fallback.ps1 rename to src/archives/logging.fallback.ps1 index c104d9b..8418673 100644 --- a/src/logging.fallback.ps1 +++ b/src/archives/logging.fallback.ps1 @@ -3,22 +3,14 @@ function global:Write-LogHelper { param ( [Parameter(Mandatory = $true)] [string]$Message, - [ValidateSet("Info", "Warning", "Error", "Success", "General")] [string]$Level = "Info", - [string]$TaskCategory = "GeneralTask", - [switch]$LogToEvent = $false, - [string]$EventSource = "SAMY", - [string]$EventLog = "SVSMSP Events", - [int]$CustomEventID, - [string]$LogFile, - [switch]$PassThru )