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

Commit d3ca9917 authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Report FileBridge failures as wtf().

Bug: 17183379
Change-Id: Ifd4dc690c04439e1f7abebd8e0ca4e1ff97d9cc8
parent f50d82a1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -119,9 +119,9 @@ public class FileBridge extends Thread {
            }

        } catch (ErrnoException e) {
            Log.e(TAG, "Failed during bridge: ", e);
            Log.wtf(TAG, "Failed during bridge", e);
        } catch (IOException e) {
            Log.e(TAG, "Failed during bridge: ", e);
            Log.wtf(TAG, "Failed during bridge", e);
        } finally {
            IoUtils.closeQuietly(mTarget);
            IoUtils.closeQuietly(mServer);