Fix typo in sync log.

Bug: 62052247
Test: build
Change-Id: I760f634e137bcc70059ca4f2ff99e2df9618365a
This commit is contained in:
Makoto Onuki
2017-07-14 10:27:03 -07:00
parent 717765f0f3
commit 118c0da035

View File

@@ -76,7 +76,7 @@ public class SyncJobService extends JobService {
m.what = SyncManager.SyncHandler.MESSAGE_START_SYNC;
SyncOperation op = SyncOperation.maybeCreateFromJobExtras(params.getExtras());
mLogger.log("onStopJob() jobid=", params.getJobId(), " op=", op);
mLogger.log("onStartJob() jobid=", params.getJobId(), " op=", op);
if (op == null) {
Slog.e(TAG, "Got invalid job " + params.getJobId());
@@ -131,4 +131,4 @@ public class SyncJobService extends JobService {
}
}
}
}
}