diff options
| author | 2020-08-19 22:07:13 +0000 | |
|---|---|---|
| committer | 2020-08-19 22:07:13 +0000 | |
| commit | c20242f7e6d067f909fc7f2d68f2a7ab1eef8fef (patch) | |
| tree | 85f1d501524603d753c0c8b452020863ff6fcb10 | |
| parent | 244406a4f54c8b3b6f64afc65c0dcbe972ef7d16 (diff) | |
| parent | aeec6c8ff51cd6bbd36431145a2e9cbd17e0e538 (diff) | |
Merge "IorapForwardingService: Suppress error log"
| -rw-r--r-- | startop/iorap/src/com/google/android/startop/iorap/IorapForwardingService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/startop/iorap/src/com/google/android/startop/iorap/IorapForwardingService.java b/startop/iorap/src/com/google/android/startop/iorap/IorapForwardingService.java index 22fc15985b05..12d3aba57b21 100644 --- a/startop/iorap/src/com/google/android/startop/iorap/IorapForwardingService.java +++ b/startop/iorap/src/com/google/android/startop/iorap/IorapForwardingService.java @@ -96,7 +96,7 @@ public class IorapForwardingService extends SystemService { try { iorap = IIorap.Stub.asInterface(ServiceManager.getServiceOrThrow("iorapd")); } catch (ServiceManager.ServiceNotFoundException e) { - handleRemoteError(e); + Log.w(TAG, e.getMessage()); return null; } |