Browse Source

remove noisy log statements in as-boolean

Christian Winther 1 year ago
parent
commit
335e6954d2
1 changed files with 0 additions and 4 deletions
  1. 0 4
      docker/shared/root/docker/helpers.sh

+ 0 - 4
docker/shared/root/docker/helpers.sh

@@ -559,14 +559,10 @@ function as-boolean()
 
     case "$var" in
         1 | true)
-            log-info "[as-boolean] variable [${var}] was detected as truthy/true, returning [0]"
-
             return 0
             ;;
 
         0 | false)
-            log-info "[as-boolean] variable [${var}] was detected as falsey/false, returning [1]"
-
             return 1
             ;;