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

Unified Diff: chrome/browser/chromeos/login/user_manager.cc

Issue 4011001: Convert LOG(INFO) to VLOG(1) - chrome/browser/chromeos/login/.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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/chromeos/login/user_manager.cc
===================================================================
--- chrome/browser/chromeos/login/user_manager.cc (revision 63306)
+++ chrome/browser/chromeos/login/user_manager.cc (working copy)
@@ -69,7 +69,7 @@
DictionaryValue* images =
local_state->GetMutableDictionary(kUserImages);
images->SetWithoutPathExpansion(username, new StringValue(image_path));
- DLOG(INFO) << "Saving path to user image in Local State.";
+ DVLOG(1) << "Saving path to user image in Local State.";
local_state->SavePersistentPrefs();
}
@@ -301,7 +301,7 @@
FilePath user_data_dir;
PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
FilePath image_path = user_data_dir.AppendASCII(filename);
- DLOG(INFO) << "Saving user image to " << image_path.value();
+ DVLOG(1) << "Saving user image to " << image_path.value();
BrowserThread::PostTask(
BrowserThread::FILE,
@@ -355,7 +355,7 @@
void UserManager::OnImageLoaded(const std::string& username,
const SkBitmap& image) {
- DLOG(INFO) << "Loaded image for " << username;
+ DVLOG(1) << "Loaded image for " << username;
user_images_[username] = image;
User user;
user.set_email(username);
« no previous file with comments | « chrome/browser/chromeos/login/user_image_downloader.cc ('k') | chrome/browser/chromeos/login/wizard_accessibility_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698