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

Unified Diff: chrome/browser/sync/glue/autofill_model_associator.cc

Issue 6534013: [Sync] Set logging that may contain personal information to verbosity level 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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
Index: chrome/browser/sync/glue/autofill_model_associator.cc
diff --git a/chrome/browser/sync/glue/autofill_model_associator.cc b/chrome/browser/sync/glue/autofill_model_associator.cc
index 60c92d2f93568822fc0fda990ef324f3f5c0c763..4a204af77bee6398b724251882075b816842864b 100644
--- a/chrome/browser/sync/glue/autofill_model_associator.cc
+++ b/chrome/browser/sync/glue/autofill_model_associator.cc
@@ -235,14 +235,14 @@ bool AutofillModelAssociator::TraverseAndAssociateAllSyncNodes(
bool autofill_profile_not_migrated = HasNotMigratedYet(write_trans);
- if (VLOG_IS_ON(1) && autofill_profile_not_migrated) {
- VLOG(1) << "[AUTOFILL MIGRATION]"
+ if (VLOG_IS_ON(2) && autofill_profile_not_migrated) {
+ VLOG(2) << "[AUTOFILL MIGRATION]"
<< "Printing profiles from web db";
for (std::vector<AutoFillProfile*>::const_iterator ix =
all_profiles_from_db.begin(); ix != all_profiles_from_db.end(); ++ix) {
AutoFillProfile* p = *ix;
- VLOG(1) << "[AUTOFILL MIGRATION] "
+ VLOG(2) << "[AUTOFILL MIGRATION] "
<< p->GetFieldText(AutoFillType(NAME_FIRST))
<< p->GetFieldText(AutoFillType(NAME_LAST));
}
@@ -268,7 +268,7 @@ bool AutofillModelAssociator::TraverseAndAssociateAllSyncNodes(
} else if (autofill.has_profile()) {
// Ignore autofill profiles if we are not upgrading.
if (autofill_profile_not_migrated) {
- VLOG(1) << "[AUTOFILL MIGRATION] Looking for "
+ VLOG(2) << "[AUTOFILL MIGRATION] Looking for "
<< autofill.profile().name_first()
<< autofill.profile().name_last();
AddNativeProfileIfNeeded(
« no previous file with comments | « chrome/browser/sync/engine/syncer_util.cc ('k') | chrome/browser/sync/glue/autofill_profile_model_associator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698