[linky] Few debug logs added (#11647)

Signed-off-by: Laurent Garnier <lg.hc@free.fr>
This commit is contained in:
lolodomo 2021-11-28 13:31:56 +01:00 committed by GitHub
parent addb990a5b
commit e0f72d5a7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -120,6 +120,7 @@ public class EnedisHttpApi {
if (authData == null || authData.callbacks.size() < 2 || authData.callbacks.get(0).input.isEmpty()
|| authData.callbacks.get(1).input.isEmpty() || !config.username
.equals(Objects.requireNonNull(authData.callbacks.get(0).input.get(0)).valueAsString())) {
logger.debug("auth1 - invalid template for auth data: {}", result.getContentAsString());
throw new LinkyException("Authentication error, the authentication_cookie is probably wrong");
}

View File

@ -369,6 +369,7 @@ public class LinkyHandler extends BaseThingHandler {
updateStatus(ThingStatus.ONLINE);
return consumption;
} catch (LinkyException e) {
logger.debug("Exception when getting consumption data: {}", e.getMessage(), e);
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.OFFLINE.COMMUNICATION_ERROR, e.getMessage());
}
}
@ -385,6 +386,7 @@ public class LinkyHandler extends BaseThingHandler {
updateStatus(ThingStatus.ONLINE);
return consumption;
} catch (LinkyException e) {
logger.debug("Exception when getting power data: {}", e.getMessage(), e);
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.OFFLINE.COMMUNICATION_ERROR, e.getMessage());
}
}
@ -401,7 +403,8 @@ public class LinkyHandler extends BaseThingHandler {
if (api != null) {
try {
api.dispose();
} catch (LinkyException ignore) {
} catch (LinkyException e) {
logger.debug("disconnect: {}", e.getMessage());
}
}
}