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

Commit b2b56af1 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Pass exception to log instead of appending it to a string" into main

parents f2161323 95c4acc8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2607,7 +2607,7 @@ public final class MessageQueue {
                sRemovedFromStack = l.findVarHandle(MessageQueue.MessageNode.class,
                        "mRemovedFromStackValue", boolean.class);
            } catch (Exception e) {
                Log.wtf(TAG_C, "VarHandle lookup failed with exception: " + e);
                Log.wtf(TAG_C, "VarHandle lookup failed", e);
                throw new ExceptionInInitializerError(e);
            }
        }
@@ -2686,7 +2686,7 @@ public final class MessageQueue {
            sMptrRefCount = l.findVarHandle(MessageQueue.class, "mMptrRefCountValue",
                    long.class);
        } catch (Exception e) {
            Log.wtf(TAG_C, "VarHandle lookup failed with exception: " + e);
            Log.wtf(TAG_C, "VarHandle lookup failed", e);
            throw new ExceptionInInitializerError(e);
        }
    }
@@ -2802,7 +2802,7 @@ public final class MessageQueue {
                sCounts = l.findVarHandle(MessageQueue.MessageCounts.class, "mCountsValue",
                        long.class);
            } catch (Exception e) {
                Log.wtf(TAG_C, "VarHandle lookup failed with exception: " + e);
                Log.wtf(TAG_C, "VarHandle lookup failed", e);
                throw new ExceptionInInitializerError(e);
            }
        }