Index: components/password_manager/core/browser/password_generation_manager.cc |
diff --git a/components/password_manager/core/browser/password_generation_manager.cc b/components/password_manager/core/browser/password_generation_manager.cc |
index a15af5cfa8a410c409439251423bbfc63a59a769..8eab3bb90b3977d629a8fde22dd2b80b7a711639 100644 |
--- a/components/password_manager/core/browser/password_generation_manager.cc |
+++ b/components/password_manager/core/browser/password_generation_manager.cc |
@@ -49,14 +49,14 @@ void PasswordGenerationManager::DetectAccountCreationForms( |
// (2) Password saving is enabled. |
bool PasswordGenerationManager::IsGenerationEnabled() const { |
if (!driver_->GetPasswordManager()->IsSavingEnabledForCurrentPage()) { |
- DVLOG(2) << "Generation disabled because password saving is disabled"; |
+ VLOG(2) << "Generation disabled because password saving is disabled"; |
return false; |
} |
// Don't consider sync enabled if the user has a custom passphrase. See |
// crbug.com/358998 for more details. |
if (!client_->IsPasswordSyncEnabled(WITHOUT_CUSTOM_PASSPHRASE)) { |
- DVLOG(2) << "Generation disabled because passwords are not being synced or" |
+ VLOG(2) << "Generation disabled because passwords are not being synced or" |
<< " custom passphrase is used."; |
return false; |
} |