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

Unified Diff: chrome/common/sandbox_policy.cc

Issue 3941001: Convert LOG(INFO) to VLOG(1) - chrome/common/. (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/common/sandbox_policy.cc
===================================================================
--- chrome/common/sandbox_policy.cc (revision 63075)
+++ chrome/common/sandbox_policy.cc (working copy)
@@ -173,7 +173,7 @@
// To minimize the list we only add an unload policy if the dll is also
// loaded in this process. All the injected dlls of interest do this.
if (::GetModuleHandleW(kTroublesomeDlls[ix])) {
- LOG(INFO) << "dll to unload found: " << kTroublesomeDlls[ix];
+ VLOG(1) << "dll to unload found: " << kTroublesomeDlls[ix];
policy->AddDllToUnload(kTroublesomeDlls[ix]);
}
}

Powered by Google App Engine
This is Rietveld 408576698