Merge "Fix issue #62524613: Background limitation is not working as expected..." into oc-dev

This commit is contained in:
TreeHugger Robot
2017-06-16 00:46:45 +00:00
committed by Android (Google) Code Review

View File

@@ -626,19 +626,19 @@ public final class ActiveServices {
!= ActivityManager.APP_START_MODE_NORMAL) { != ActivityManager.APP_START_MODE_NORMAL) {
if (stopping == null) { if (stopping == null) {
stopping = new ArrayList<>(); stopping = new ArrayList<>();
String compName = service.name.flattenToShortString();
EventLogTags.writeAmStopIdleService(service.appInfo.uid, compName);
StringBuilder sb = new StringBuilder(64);
sb.append("Stopping service due to app idle: ");
UserHandle.formatUid(sb, service.appInfo.uid);
sb.append(" ");
TimeUtils.formatDuration(service.createTime
- SystemClock.elapsedRealtime(), sb);
sb.append(" ");
sb.append(compName);
Slog.w(TAG, sb.toString());
stopping.add(service);
} }
String compName = service.name.flattenToShortString();
EventLogTags.writeAmStopIdleService(service.appInfo.uid, compName);
StringBuilder sb = new StringBuilder(64);
sb.append("Stopping service due to app idle: ");
UserHandle.formatUid(sb, service.appInfo.uid);
sb.append(" ");
TimeUtils.formatDuration(service.createTime
- SystemClock.elapsedRealtime(), sb);
sb.append(" ");
sb.append(compName);
Slog.w(TAG, sb.toString());
stopping.add(service);
} }
} }
} }