Fix logging statements (#16989)

* Fix logging statement

Signed-off-by: logresearch <log.researchovo@gmail.com>
Signed-off-by: Ciprian Pascu <contact@ciprianpascu.ro>
This commit is contained in:
logresearch 2024-07-09 00:15:10 +08:00 committed by Ciprian Pascu
parent 5701a84086
commit 8f1505d22a
4 changed files with 5 additions and 5 deletions

View File

@ -309,7 +309,7 @@ public class DigiplexBridgeHandler extends BaseBridgeHandler implements SerialPo
@Override
public void run() {
logger.debug("Receiver thread started");
logger.debug("Starting receiver thread");
while (!interrupted()) {
try {
Optional<String> message = readLineBlocking();
@ -360,7 +360,7 @@ public class DigiplexBridgeHandler extends BaseBridgeHandler implements SerialPo
@Override
public void run() {
logger.debug("Sender thread started");
logger.debug("Starting sender thread");
while (!interrupted()) {
try {
DigiplexRequest request = sendQueue.take();

View File

@ -62,7 +62,7 @@ public class PentairIntelliFloHandler extends PentairBaseThingHandler {
@Override
public void handleCommand(ChannelUID channelUID, Command command) {
if (command instanceof RefreshType) {
logger.debug("Intellflo received refresh command");
logger.debug("IntelliFlo received refresh command");
updateChannel(channelUID.getId(), null);
}
}

View File

@ -200,7 +200,7 @@ public class SonyAudioClientSocket {
private void sendMessage(String str) throws IOException {
if (isConnected()) {
logger.debug("send message fo {}: {}", uri.toString(), str);
logger.debug("send message for {}: {}", uri.toString(), str);
session.getRemote().sendString(str);
} else {
String stack = "";

View File

@ -110,7 +110,7 @@ public class SecurePasstroughCipher {
encodeCipher.init(1, secretKeySpec, ivParameterSpec);
decodeCipher.init(2, secretKeySpec, ivParameterSpec);
} catch (Exception e) {
logger.warn("initChiper failed: {}", e.getMessage());
logger.warn("initCipher failed: {}", e.getMessage());
encodeCipher = null;
decodeCipher = null;
}