Remove duplicate logging.

This commit is contained in:
Johannes Mockenhaupt 2017-09-10 14:24:00 +02:00
parent 612efa6a13
commit 936ce42cc0
No known key found for this signature in database
GPG key ID: 9E1EA6AF7BBBB0D1
3 changed files with 0 additions and 6 deletions

View file

@ -159,7 +159,6 @@ public class SerialIOThread extends Thread {
mOutputStream.write(messageBytes);
} catch (Exception e) {
log.error("sendMessage write exception: ", e);
log.error("Unhandled exception", e);
}
synchronized (message) {
@ -167,7 +166,6 @@ public class SerialIOThread extends Thread {
message.wait(5000);
} catch (InterruptedException e) {
log.error("sendMessage InterruptedException", e);
log.error("Unhandled exception", e);
}
}

View file

@ -160,7 +160,6 @@ public class SerialIOThread extends Thread {
mOutputStream.write(messageBytes);
} catch (Exception e) {
log.error("sendMessage write exception: ", e);
log.error("Unhandled exception", e);
}
synchronized (message) {
@ -168,7 +167,6 @@ public class SerialIOThread extends Thread {
message.wait(5000);
} catch (InterruptedException e) {
log.error("sendMessage InterruptedException", e);
log.error("Unhandled exception", e);
}
}

View file

@ -160,7 +160,6 @@ public class SerialIOThread extends Thread {
mOutputStream.write(messageBytes);
} catch (Exception e) {
log.error("sendMessage write exception: ", e);
log.error("Unhandled exception", e);
}
synchronized (message) {
@ -168,7 +167,6 @@ public class SerialIOThread extends Thread {
message.wait(5000);
} catch (InterruptedException e) {
log.error("sendMessage InterruptedException", e);
log.error("Unhandled exception", e);
}
}