functions/internal/Set-LogLevelToPreference.ps1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
function Set-LogLevelToPreference {
    param(
        [Parameter(Mandatory = $true)]
        [Serilog.Events.LogEventLevel]$LogLevel
    )

    if ([int]$LogLevel -le [int]([Serilog.Events.LogEventLevel]::Verbose)) {
        Set-Variable VerbosePreference -Value 'Continue' -Scope Global
    }
    else{
        Set-Variable VerbosePreference -Value 'SilentlyContinue' -Scope Global
    }

    if ([int]$LogLevel -le [int]([Serilog.Events.LogEventLevel]::Debug)) {
        Set-Variable DebugPreference -Value 'Continue' -Scope Global
    }
    else{
        Set-Variable DebugPreference -Value 'SilentlyContinue' -Scope Global
    }

    if ([int]$LogLevel -le [int]([Serilog.Events.LogEventLevel]::Information)) {
        Set-Variable InformationPreference -Value 'Continue' -Scope Global
    }
    else {
        Set-Variable InformationPreference -Value 'SilentlyContinue' -Scope Global
    }

    if ([int]$LogLevel -le [int]([Serilog.Events.LogEventLevel]::Warning)) {
        Set-Variable WarningPreference -Value 'Continue' -Scope Global
    }
    else{
        Set-Variable WarningPreference -Value 'SilentlyContinue' -Scope Global
    }
}