Commit 66da9250 authored by romax's avatar romax Committed by Commit bot

[Offline Pages] Fix format error when logging in test harness.

Fix MissingFormatArgumentException in Evaluation test for latest logging
changes.

BUG=678279

Review-Url: https://codereview.chromium.org/2610883003
Cr-Commit-Position: refs/heads/master@{#441460}
parent f89894a0
......@@ -275,8 +275,7 @@ public class OfflinePageSavePageLaterEvaluationTest
timeDelta.setStartTime(System.currentTimeMillis());
metadata.mTimeDelta = timeDelta;
mRequestMetadata.put(request.getRequestId(), metadata);
log(TAG,
"SavePageRequest Added for " + metadata.mUrl + " with id " + metadata.mId);
log(TAG, "SavePageRequest Added for %s with id %d.", metadata.mUrl, metadata.mId);
}
public void savePageRequestCompleted(SavePageRequest request, int status) {
RequestMetadata metadata = mRequestMetadata.get(request.getRequestId());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment