mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
10 lines
332 B
PowerShell
10 lines
332 B
PowerShell
function Read-IcingaAgentDebugLogFile()
|
|
{
|
|
$Logfile = Join-Path -Path (Get-IcingaAgentLogDirectory) -ChildPath 'debug.log';
|
|
if ((Test-Path $Logfile) -eq $FALSE) {
|
|
Write-IcingaConsoleError 'Icinga 2 debug logfile not present. Unable to load it';
|
|
return;
|
|
}
|
|
|
|
Get-Content -Path $Logfile -Tail 20 -Wait;
|
|
}
|