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