Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 585fc71e authored by Mike Lockwood's avatar Mike Lockwood Committed by Android (Google) Code Review
Browse files

Merge "UsbDebuggingManager: remove log spam when disconnecting USB"

parents b68bf447 2471e02c
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -84,7 +84,6 @@ public class UsbDebuggingManager implements Runnable {
            while (true) {
                int count = inputStream.read(buffer);
                if (count < 0) {
                    Slog.e(TAG, "got " + count + " reading");
                    break;
                }

@@ -100,9 +99,6 @@ public class UsbDebuggingManager implements Runnable {
                    break;
                }
            }
        } catch (IOException ex) {
            Slog.e(TAG, "Communication error: ", ex);
            throw ex;
        } finally {
            closeSocket();
        }