mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-25 14:55:55 +01:00
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:
parent
5701a84086
commit
8f1505d22a
@ -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();
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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 = "";
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user