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

Commit ba98170e authored by lpeter's avatar lpeter
Browse files

Use Log.w(String, String, Throwable tr) instead of Log.w(String, String)

Use Log.w(String, String, Throwable tr) instead of Log.w(String, String)
to give a bit better performance.

Bug: 160931064
Test: manual verification
Change-Id: I3622f306f706f1cb327c4d974b678b700a1d1d20
parent e9a117eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -152,7 +152,7 @@ class InlineSuggestionSession {
        try {
        try {
            mCallback.onInlineSuggestionsSessionInvalidated();
            mCallback.onInlineSuggestionsSessionInvalidated();
        } catch (RemoteException e) {
        } catch (RemoteException e) {
            Log.w(TAG, "onInlineSuggestionsSessionInvalidated() remote exception:" + e);
            Log.w(TAG, "onInlineSuggestionsSessionInvalidated() remote exception", e);
        }
        }
        if (mResponseCallback != null) {
        if (mResponseCallback != null) {
            consumeInlineSuggestionsResponse(EMPTY_RESPONSE);
            consumeInlineSuggestionsResponse(EMPTY_RESPONSE);