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
291fc617b6
commit
2f5f7ac1a1
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)) {
|
if (-Not $negate -And (Test-Numeric $rangeMin) -And (Test-Numeric $rangeMax)) {
|
||||||
$this.WarnIfLowerThan($rangeMin).WarnIfGreaterThan($rangeMax) | Out-Null;
|
$this.WarnIfLowerThan($rangeMin).WarnIfGreaterThan($rangeMax) | Out-Null;
|
||||||
} elseif ((Test-Numeric $rangeMin) -And [string]::IsNullOrEmpty($rangeMax) -eq $TRUE) {
|
} elseif ((Test-Numeric $rangeMin) -And [string]::IsNullOrEmpty($rangeMax) -eq $TRUE) {
|
||||||
Write-Host 'lal'
|
|
||||||
$this.WarnIfLowerThan($rangeMin) | Out-Null;
|
$this.WarnIfLowerThan($rangeMin) | Out-Null;
|
||||||
} elseif ($rangeMin -eq '~' -And (Test-Numeric $rangeMax)) {
|
} elseif ($rangeMin -eq '~' -And (Test-Numeric $rangeMax)) {
|
||||||
$this.WarnIfGreaterThan($rangeMax) | Out-Null;
|
$this.WarnIfGreaterThan($rangeMax) | Out-Null;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue