[tradfri] reduce logging levels (#12462)

Signed-off-by: Rob Nielsen <rob.nielsen@yahoo.com>
This commit is contained in:
robnielsen 2022-03-12 01:53:01 -06:00 committed by GitHub
parent 6112e447aa
commit 210a027053
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ public class TradfriDiscoveryParticipant implements MDNSDiscoveryParticipant {
.withLabel("@text/discovery.gateway.label").withRepresentationProperty(PROPERTY_SERIAL_NUMBER)
.build();
} else {
logger.warn("Discovered Tradfri gateway doesn't have an IP address: {}", service);
logger.debug("Discovered Tradfri gateway doesn't have an IP address: {}", service);
}
}
return null;

View File

@ -225,7 +225,7 @@ public class TradfriGatewayHandler extends BaseBridgeHandler implements CoapCall
"Pre-shared key was not obtain successfully");
return false;
} else {
logger.info("Received pre-shared key for gateway '{}'", configuration.host);
logger.debug("Received pre-shared key for gateway '{}'", configuration.host);
logger.debug("Using identity '{}' with pre-shared key '{}'.", identity, preSharedKey);
Configuration editedConfig = editConfiguration();