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

Commit cd02ed86 authored by Thomas Stuart's avatar Thomas Stuart
Browse files

fix string.format %e formatting error

String.format does not have a %e format.  There was a typo in the log
that causes an exception to occur.  The log lines have been changed
accordingly.

Fixes: 290652652
Test: manual
Change-Id: Iff23415b00c6b2e23c4a8b1480aa62d477171de1
parent f3be9529
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);
                        }
                    }