From d0e9350f80049956cbe97f1b5fd283caec366d4a Mon Sep 17 00:00:00 2001 From: "cpu@chromium.org" Date: Thu, 5 Nov 2009 03:46:35 +0000 Subject: 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 --- chrome/browser/sandbox_policy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]); } } -- cgit v1.1