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 )