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

Commit 8319d597 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Print exception via Slog, not .printStackTrace()." into sc-dev

parents d0c7c20e c4208aae
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -525,8 +525,7 @@ public final class SystemServer implements Dumpable {
            String filename = "/data/system/heapdump/fdtrack-" + date + ".hprof";
            Debug.dumpHprofData(filename);
        } catch (IOException ex) {
            Slog.e("System", "Failed to dump fdtrack hprof");
            ex.printStackTrace();
            Slog.e("System", "Failed to dump fdtrack hprof", ex);
        }
    }