Skip to content

Commit

Permalink
Disable noisy printf in nss_util.cc
Browse files Browse the repository at this point in the history
This is printed in every browser test, and just adds noise. Switch it
to VLOG(1) so it's available when wanted.

R=rsleevi@chromium.org
BUG=339891

Review URL: https://codereview.chromium.org/148483008

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248290 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
danakj@chromium.org committed Jan 31, 2014
1 parent 8c2cb5e commit 3194699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/nss_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ class NSSInitSingleton {
void InitializePrivateSoftwareSlotForChromeOSUser(
const std::string& username_hash) {
DCHECK(thread_checker_.CalledOnValidThread());
LOG(WARNING) << "using software private slot for " << username_hash;
VLOG(1) << "using software private slot for " << username_hash;
DCHECK(chromeos_user_map_.find(username_hash) != chromeos_user_map_.end());
chromeos_user_map_[username_hash]->SetPrivateSlot(
chromeos_user_map_[username_hash]->GetPublicSlot());
Expand Down

0 comments on commit 3194699

Please sign in to comment.