summaryrefslogtreecommitdiff
path: root/startop/iorap
diff options
context:
space:
mode:
authoryawanng <yawanng@google.com>2020-08-11 20:51:51 +0000
committeryawanng <yawanng@google.com>2020-08-19 19:50:09 +0000
commitaeec6c8ff51cd6bbd36431145a2e9cbd17e0e538 (patch)
tree3dab14e4a32583149b66164c6c2635f6603a9901 /startop/iorap
parent5c8e5ca313a8537ffd172561baf8200afb8c5d47 (diff)
IorapForwardingService: Suppress error log
Bug: 160381575 Test: make Change-Id: Iee7506205edc2863c76d0dae0568297565def3df
Diffstat (limited to 'startop/iorap')
-rw-r--r--startop/iorap/src/com/google/android/startop/iorap/IorapForwardingService.java2
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;
}