typos: success, successful (#13997)

This commit is contained in:
Дилян Палаузов
2022-12-18 15:18:24 +02:00
committed by GitHub
parent 6b1354f9ba
commit ef836a15dc
18 changed files with 29 additions and 29 deletions

View File

@@ -140,7 +140,7 @@ public class VerisureSmartLockThingHandler extends VerisureThingHandler<Verisure
if (session != null) {
int httpResultCode = session.sendCommand(url, data, installationId);
if (httpResultCode == HttpStatus.OK_200) {
logger.debug("AutoRelock sucessfully changed to {}", command.toString());
logger.debug("AutoRelock successfully changed to {}", command.toString());
} else {
logger.warn("Failed to send command, HTTP result code {}", httpResultCode);
}
@@ -223,7 +223,7 @@ public class VerisureSmartLockThingHandler extends VerisureThingHandler<Verisure
logger.debug("Trying to set SmartLock volume with URL {} and data {}", url, data);
int httpResultCode = session.sendCommand(url, data, installationId);
if (httpResultCode == HttpStatus.OK_200) {
logger.debug("SmartLock volume sucessfully changed!");
logger.debug("SmartLock volume successfully changed!");
} else {
logger.warn("Failed to send command, HTTP result code {}", httpResultCode);
}