diff options
author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-05 03:46:35 +0000 |
---|---|---|
committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-05 03:46:35 +0000 |
commit | d0e9350f80049956cbe97f1b5fd283caec366d4a (patch) | |
tree | 3aae31359ee2c036015ce7ded3e699e08d4c21f5 /chrome | |
parent | 91d261aa0852c658e5a00ab15e401af21ca2da49 (diff) | |
download | chromium_src-d0e9350f80049956cbe97f1b5fd283caec366d4a.zip chromium_src-d0e9350f80049956cbe97f1b5fd283caec366d4a.tar.gz chromium_src-d0e9350f80049956cbe97f1b5fd283caec366d4a.tar.bz2 |
Move LOG from warning to info
- Less file IO on the UI thread
Review URL: http://codereview.chromium.org/354013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31067 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/sandbox_policy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/sandbox_policy.cc b/chrome/browser/sandbox_policy.cc index 0acd91d..62d6af2 100644 --- a/chrome/browser/sandbox_policy.cc +++ b/chrome/browser/sandbox_policy.cc @@ -163,7 +163,7 @@ void AddDllEvictionPolicy(sandbox::TargetPolicy* policy) { // 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(WARNING) << "dll to unload found: " << kTroublesomeDlls[ix]; + LOG(INFO) << "dll to unload found: " << kTroublesomeDlls[ix]; policy->AddDllToUnload(kTroublesomeDlls[ix]); } } |