Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4354)

Unified Diff: chrome/browser/webdata/autofill_profile_syncable_service.cc

Issue 10383127: Explode Autofill sync error messages for debugging (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moar DRY Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/sync/glue/generic_change_processor.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/webdata/autofill_profile_syncable_service.cc
diff --git a/chrome/browser/webdata/autofill_profile_syncable_service.cc b/chrome/browser/webdata/autofill_profile_syncable_service.cc
index 867bb167d913d63d8f7d77a731b16c2e545b5cd4..8b352d53b7d0b2b8b73f4729e540e5ec8a638592 100644
--- a/chrome/browser/webdata/autofill_profile_syncable_service.cc
+++ b/chrome/browser/webdata/autofill_profile_syncable_service.cc
@@ -458,10 +458,11 @@ void AutofillProfileSyncableService::ActOnChange(
}
SyncError error = sync_processor_->ProcessSyncChanges(FROM_HERE, new_changes);
if (error.IsSet()) {
- DLOG(WARNING) << "[AUTOFILL SYNC]"
- << " Failed processing change:"
- << " Error:" << error.message()
- << " Guid:" << change.key();
+ // TODO(isherman): Investigating http://crbug.com/121592
+ VLOG(1) << "[AUTOFILL SYNC] "
+ << "Failed processing change:\n"
+ << " Error: " << error.message() << "\n"
+ << " Guid: " << change.key();
}
}
« no previous file with comments | « chrome/browser/sync/glue/generic_change_processor.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698