Kabompo.Variables.ps1
# ---------------------------------------------------------------------------------------------------------------------- # # Project: Powershell Module Logging (KABOMPO) # Purpose: Variables that can be changed by customer # Author: David Koenig, Juergen Ackers, Erwin Aigner # # ---------------------------------------------------------------------------------------------------------------------- # Will be initialized by Kabompo.Logging.Register-KabompoLogging $global:kabompoLog="$($PSScriptRoot)\log\kabompo.log" # Do you want to output all Log to the console (will only work, when console oder ise is attached to process) $global:LogToConsole=$true # Detail Level of Logfiles (0 = Debug, 1 = Normal, 2 = Minimalistic, 3 = Off) # 0 Should be used in all Helper files # 1 Should be used for normal information in methods the user can call # 2 Should be used for "start" and "end" lines of a method (for methods the user can call) $global:LogDetailLevel = 0 |