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

Unified Diff: chrome_frame/policy_settings.cc

Issue 3850002: Convert LOG(INFO) to VLOG(1) - chrome_frame/. (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
« no previous file with comments | « chrome_frame/ole_document_impl.h ('k') | chrome_frame/protocol_sink_wrap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/policy_settings.cc
===================================================================
--- chrome_frame/policy_settings.cc (revision 62784)
+++ chrome_frame/policy_settings.cc (working copy)
@@ -65,7 +65,7 @@
"invalid default renderer setting: " << value;
if (value != RENDER_IN_HOST && value != RENDER_IN_CHROME_FRAME) {
- DLOG(INFO) << "default renderer not specified via policy";
+ DVLOG(1) << "default renderer not specified via policy";
} else {
default_renderer_ = static_cast<RendererForUrl>(value);
const char* exclusion_list_name = (default_renderer_ == RENDER_IN_HOST) ?
@@ -75,9 +75,9 @@
EnumerateKeyValues(config_key.Handle(),
ASCIIToWide(exclusion_list_name).c_str(), &renderer_exclusion_list_);
- DLOG(INFO) << "Default renderer as specified via policy: " <<
- default_renderer_ << " exclusion list size: " <<
- renderer_exclusion_list_.size();
+ DVLOG(1) << "Default renderer as specified via policy: "
+ << default_renderer_
+ << " exclusion list size: " << renderer_exclusion_list_.size();
}
std::wstring sub_key(policy::kRegistrySubKey);
« no previous file with comments | « chrome_frame/ole_document_impl.h ('k') | chrome_frame/protocol_sink_wrap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698