icinga-powershell-framework/lib/core/logging/Write-IcingaErrorMessage.psm1
2020-03-24 20:07:34 +01:00

13 lines
334 B
PowerShell

function Write-IcingaErrorMessage()
{
param(
[int]$EventId = 0,
[string]$Message = $null
);
if ($EventId -eq 0 -Or [string]::IsNullOrEmpty($Message)) {
return;
}
Write-EventLog -LogName Application -Source 'Icinga for Windows' -EntryType Error -EventId $EventId -Message $Message;
}