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

Commit 5d16c59a authored by Vinit Deshpande's avatar Vinit Deshpande Committed by Android Partner Code Review
Browse files

Merge "Don't log errors if the receive thread is stopped." into m-wireless-dev

parents 271c9edc f5c17221
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -331,9 +331,11 @@ public class DhcpClient extends BaseDhcpStateMachine {
                        sendMessage(CMD_RECEIVED_PACKET, packet);
                    }
                } catch (IOException|ErrnoException e) {
                    if (!stopped) {
                        Log.e(TAG, "Read error", e);
                    }
                }
            }
            maybeLog("Stopping receive thread");
        }
    }