initialer commit mit kleinem prototype

This commit is contained in:
2026-03-24 18:21:50 +01:00
commit 89b8072e01
3 changed files with 29 additions and 0 deletions

18
LogFramework.psm1 Normal file
View File

@@ -0,0 +1,18 @@
function Write-LFLog {
param(
[string]$Message,
[ValidateSet("low","mid","high","critical")]
[string]$Severity = "low"
)
switch ($Severity) {
"low" { $color = "Gray" }
"mid" { $color = "Cyan" }
"high" { $color = "Yellow" }
"critical" { $color = "Red" }
}
Write-Host "[$Severity] $Message" -ForegroundColor $color
}
Export-ModuleMember -Function Write-LFLog