mirror of
https://github.com/danieldemus/openhab-addons
synced 2026-07-29 12:34:21 +02:00
Fix logging statements (#16989)
* Fix logging statement Signed-off-by: logresearch <log.researchovo@gmail.com>
This commit is contained in:
+2
-2
@@ -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();
|
||||
|
||||
+1
-1
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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 = "";
|
||||
|
||||
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user