Skip to content

Commit a697f40

Browse files
Robert GreenwaltAndroid (Google) Code Review
authored andcommitted
Merge "Stop complaining about failure to remove routes"
2 parents ba4dd93 + 2473a4b commit a697f40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/java/com/android/server/ConnectivityService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1366,7 +1366,7 @@ private boolean modifyRoute(String ifaceName, LinkProperties lp, RouteInfo r, in
13661366
mNetd.removeRoute(ifaceName, r);
13671367
} catch (Exception e) {
13681368
// never crash - catch them all
1369-
if (DBG) loge("Exception trying to remove a route: " + e);
1369+
if (VDBG) loge("Exception trying to remove a route: " + e);
13701370
return false;
13711371
}
13721372
} else {
@@ -1378,7 +1378,7 @@ private boolean modifyRoute(String ifaceName, LinkProperties lp, RouteInfo r, in
13781378
mNetd.removeSecondaryRoute(ifaceName, r);
13791379
} catch (Exception e) {
13801380
// never crash - catch them all
1381-
if (DBG) loge("Exception trying to remove a route: " + e);
1381+
if (VDBG) loge("Exception trying to remove a route: " + e);
13821382
return false;
13831383
}
13841384
}

0 commit comments

Comments
 (0)