Skip to content

Commit 71b9c50

Browse files
committed
Remove extra logs
1 parent cdd0146 commit 71b9c50

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

sdl_android/src/main/java/com/smartdevicelink/transport/MultiplexBluetoothTransport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ public void run() {
788788
while (true) {
789789
try {
790790
bytesRead = mmInStream.read(buffer);
791-
Log.i(getClass().getName(), "Received " + bytesRead + " bytes from Bluetooth");
791+
//Log.i(getClass().getName(), "Received " + bytesRead + " bytes from Bluetooth");
792792
for (int i = 0; i < bytesRead; i++) {
793793
input = buffer[i];
794794

sdl_android/src/main/java/com/smartdevicelink/transport/SdlRouterService.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,6 @@ public void handleMessage(Message msg) {
418418

419419
break;
420420
case TransportConstants.ROUTER_SEND_PACKET:
421-
Log.d(TAG, "Received packet to send");
422421
if(receivedBundle!=null){
423422
Runnable packetRun = new Runnable(){
424423
@Override
@@ -2514,7 +2513,7 @@ public PacketWriteTask(Bundle bundle){
25142513
bytesToWrite = bundle.getByteArray(TransportConstants.BYTES_TO_SEND_EXTRA_NAME);
25152514
offset = bundle.getInt(TransportConstants.BYTES_TO_SEND_EXTRA_OFFSET, 0); //If nothing, start at the beginning of the array
25162515
size = bundle.getInt(TransportConstants.BYTES_TO_SEND_EXTRA_COUNT, bytesToWrite.length); //In case there isn't anything just send the whole packet.
2517-
this.priorityCoefficient = bundle.getInt(TransportConstants.PACKET_PRIORITY_COEFFICIENT,0); Log.d(TAG, "packet priority coef: "+ this.priorityCoefficient);
2516+
this.priorityCoefficient = bundle.getInt(TransportConstants.PACKET_PRIORITY_COEFFICIENT,0);
25182517
}
25192518

25202519
@Override

0 commit comments

Comments
 (0)