Skip to content

Commit

Permalink
Update BathroomHumidityChild.src
Browse files Browse the repository at this point in the history
  • Loading branch information
heidrickla authored Mar 18, 2021
1 parent b2c0e0a commit d24b4ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Apps/BathroomHumidityFan/BathroomHumidityChild.src
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import groovy.transform.Field
import hubitat.helper.RMUtils

def setVersion() {
state.version = "1.1.36" // Version number of this app
state.version = "1.1.37" // Version number of this app
state.InternalName = "BathroomHumidityFan" // this is the name used in the JSON file for this app
}

Expand Down Expand Up @@ -1055,9 +1055,9 @@ private timeIntervalLabel() {

// Logging functions
def turnOffLoggingTogglesIn30() {
if (isInfo == null) {app.updateSetting("isInfo",[value:"false",type:"bool"])}
if (isDebug == null) {app.updateSetting("isDebug",[value:"false",type:"bool"])}
if (isTrace == null) {app.updateSetting("isTrace",[value:"false",type:"bool"])}
if (!isInfo) {app.updateSetting("isInfo",[value:"false",type:"bool"])}
if (!isDebug) {app.updateSetting("isDebug",[value:"false",type:"bool"])}
if (!isTrace) {app.updateSetting("isTrace",[value:"false",type:"bool"])}
if (isInfo == true) {runIn(1800, infoOff)}
if (isDebug == true) {runIn(1800, debugOff)}
if (isTrace == true) {runIn(1800, traceOff)}
Expand Down

0 comments on commit d24b4ac

Please sign in to comment.