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

Commit 18e529e3 authored by Thomas Stuart's avatar Thomas Stuart
Browse files

add a try/catch when dumping Emrg diagnostics

Fixes: 325501024
Test: build + adb shell dumpsys telecom
Change-Id: Ic8adc8aa76a87349d2e4e6b4fc8de1fb0bfa574e
parent dfa4fb62
Loading
Loading
Loading
Loading
+6 −1
Original line number Original line Diff line number Diff line
@@ -404,7 +404,12 @@ public class EmergencyCallDiagnosticLogger extends CallsManagerListenerBase
            Log.i(this, "skipped dumping diagnostic data");
            Log.i(this, "skipped dumping diagnostic data");
            return;
            return;
        }
        }
        try {
            dumpDiagnosticDataFromDropbox(pw);
            dumpDiagnosticDataFromDropbox(pw);
        } catch (Exception e) {
            pw.println("Exception was thrown while dumping diagnostic data from DropBox");
            e.printStackTrace();
        }
    }
    }


    private static class CallEventTimestamps {
    private static class CallEventTimestamps {