Skip to content

Commit 76aa916

Browse files
committed
Cleaned up code, remove unneccessary debug logging.
Signed-off-by: AntonJansen <gradius@fmf.nl>
1 parent 42a5794 commit 76aa916

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

bundles/org.openhab.binding.broadlink/src/main/java/org/openhab/binding/broadlink/internal/handler/BroadlinkRemoteHandler.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ protected byte[] extractResponsePayload(byte[] responseBytes) throws IOException
131131
}
132132

133133
private void handleIRCommand(String irCommand, boolean replacement) {
134-
logger.debug("***** DEBUG2 handle IR COMMAND");
135134
try {
136135
String message = "";
137136
if (replacement) {
@@ -147,9 +146,6 @@ private void handleIRCommand(String irCommand, boolean replacement) {
147146
return;
148147
}
149148

150-
// sendCommand(COMMAND_BYTE_ENTER_LEARNING, "enter remote code learning mode");
151-
// Thread.sleep(200);
152-
153149
byte[] response = sendCommand(COMMAND_BYTE_CHECK_LEARNT_DATA, "send learnt code check command");
154150

155151
if (response == null) {
@@ -235,7 +231,6 @@ void handleLearningCommand(String learningCommand) {
235231

236232
@Override
237233
public void handleCommand(ChannelUID channelUID, Command command) {
238-
logger.debug("****Handling command ****");
239234
if (!Utils.isOnline(getThing())) {
240235
logger.debug("Can't handle command {} because handler for thing {} is not ONLINE", command,
241236
getThing().getLabel());

0 commit comments

Comments
 (0)