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

Commit eec28f6f authored by Thomas Stuart's avatar Thomas Stuart Committed by Android (Google) Code Review
Browse files

Merge "fix string.format %e formatting error" into main

parents 6e171ef4 cd02ed86
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -451,7 +451,8 @@ public class TransactionalServiceWrapper implements

                        @Override
                        public void onError(CallException exception) {
                            Log.i(TAG, "onSetInactive: onError: with e=[%e]", exception);
                            Log.w(TAG, "onSetInactive: onError: e.code=[%d], e.msg=[%s]",
                                    exception.getCode(), exception.getMessage());
                        }
                    });
        } finally {
@@ -498,8 +499,9 @@ public class TransactionalServiceWrapper implements

                        @Override
                        public void onError(CallException exception) {
                            Log.i(TAG, "onCallStreamingStarted: onError: with e=[%e]",
                                    exception);
                            Log.w(TAG, "onCallStreamingStarted: onError: "
                                            + "e.code=[%d], e.msg=[%s]",
                                    exception.getCode(), exception.getMessage());
                            stopCallStreaming(call);
                        }
                    }