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

Commit cd85368b authored by Atneya Nair's avatar Atneya Nair Committed by Android (Google) Code Review
Browse files

Merge "Add unhandled exception listener to STService" into main

parents d3bed8a7 dceef495
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -504,6 +504,11 @@ public class SoundTriggerService extends SystemService {
            pw.println("\n##Sound Model Stats dump:\n");
            mSoundModelStatTracker.dump(pw);
        }

        @Override
        protected void onUnhandledException(int code, int flags, Exception e) {
            Slog.wtf(TAG, "Unhandled exception code: " + code, e);
        }
    }

    class SoundTriggerSessionStub extends ISoundTriggerSession.Stub {