mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
Removed no longer required debug output
This commit is contained in:
parent
97197e16c8
commit
0ef518ef19
1 changed files with 0 additions and 1 deletions
|
|
@ -55,7 +55,6 @@ function New-IcingaCheck()
|
|||
if (-Not $negate -And (Test-Numeric $rangeMin) -And (Test-Numeric $rangeMax)) {
|
||||
$this.WarnIfLowerThan($rangeMin).WarnIfGreaterThan($rangeMax) | Out-Null;
|
||||
} elseif ((Test-Numeric $rangeMin) -And [string]::IsNullOrEmpty($rangeMax) -eq $TRUE) {
|
||||
Write-Host 'lal'
|
||||
$this.WarnIfLowerThan($rangeMin) | Out-Null;
|
||||
} elseif ($rangeMin -eq '~' -And (Test-Numeric $rangeMax)) {
|
||||
$this.WarnIfGreaterThan($rangeMax) | Out-Null;
|
||||
|
|
|
|||
Loading…
Reference in a new issue