summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_update_job.cc
diff options
context:
space:
mode:
authorjennb@chromium.org <jennb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-06 18:04:39 +0000
committerjennb@chromium.org <jennb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-06 18:04:39 +0000
commit9b1ec13d1040ac643f053a3a7e3306220a898750 (patch)
tree5503a688884878027ff0211cb027fc4296d990ae /webkit/appcache/appcache_update_job.cc
parente0ace9d3d6d0f6b9b2cf58a01f0f01f796d70345 (diff)
downloadchromium_src-9b1ec13d1040ac643f053a3a7e3306220a898750.zip
chromium_src-9b1ec13d1040ac643f053a3a7e3306220a898750.tar.gz
chromium_src-9b1ec13d1040ac643f053a3a7e3306220a898750.tar.bz2
Disable some appcache update tests that depend on testserver.
Probably failing due to network timeout. Upped log message to ERROR to get more info. TEST=none BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28126 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_update_job.cc')
-rw-r--r--webkit/appcache/appcache_update_job.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/appcache/appcache_update_job.cc b/webkit/appcache/appcache_update_job.cc
index 7732faf..a22b561 100644
--- a/webkit/appcache/appcache_update_job.cc
+++ b/webkit/appcache/appcache_update_job.cc
@@ -244,7 +244,7 @@ void AppCacheUpdateJob::HandleManifestFetchCompleted(URLRequest* request) {
manifest_url_request_ = NULL;
if (!request->status().is_success()) {
- LOG(INFO) << "Request non-success, status: " << request->status().status()
+ LOG(ERROR) << "Request non-success, status: " << request->status().status()
<< " os_error: " << request->status().os_error();
internal_state_ = CACHE_FAILURE;
MaybeCompleteUpdate(); // if not done, run async cache failure steps
@@ -268,7 +268,7 @@ void AppCacheUpdateJob::HandleManifestFetchCompleted(URLRequest* request) {
NotifyAllPendingMasterHosts(ERROR_EVENT);
DeleteSoon();
} else {
- LOG(INFO) << "Cache failure, response code: " << response_code;
+ LOG(ERROR) << "Cache failure, response code: " << response_code;
internal_state_ = CACHE_FAILURE;
MaybeCompleteUpdate(); // if not done, run async cache failure steps
}
@@ -287,7 +287,7 @@ void AppCacheUpdateJob::ContinueHandleManifestFetchCompleted(bool changed) {
Manifest manifest;
if (!ParseManifest(manifest_url_, manifest_data_.data(),
manifest_data_.length(), manifest)) {
- LOG(INFO) << "Failed to parse manifest: " << manifest_url_;
+ LOG(ERROR) << "Failed to parse manifest: " << manifest_url_;
internal_state_ = CACHE_FAILURE;
MaybeCompleteUpdate(); // if not done, run async cache failure steps
return;