summaryrefslogtreecommitdiffstats
path: root/ceee
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-11 01:03:36 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-11 01:03:36 +0000
commit7c10f7553bf4da999f954e501fc2908e10dd3bcf (patch)
tree09ea21b6c28bc9132d0a2f4b678cc810a29e3fd1 /ceee
parent9a425422549b0dc33730e85bdae2fd441caa55da (diff)
downloadchromium_src-7c10f7553bf4da999f954e501fc2908e10dd3bcf.zip
chromium_src-7c10f7553bf4da999f954e501fc2908e10dd3bcf.tar.gz
chromium_src-7c10f7553bf4da999f954e501fc2908e10dd3bcf.tar.bz2
Made logging not look up --enable-dcheck from command line
Made --enable-dcheck a parameter to InitLogging() and fixed up all callsites. BUG=62736 TEST=Manual Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=70782 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=70920 Review URL: http://codereview.chromium.org/6070006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70977 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ceee')
-rw-r--r--ceee/ie/broker/broker_module.cc3
-rw-r--r--ceee/ie/plugin/toolband/toolband_module.cc3
-rw-r--r--ceee/installer_dll/installer_helper.cc3
3 files changed, 6 insertions, 3 deletions
diff --git a/ceee/ie/broker/broker_module.cc b/ceee/ie/broker/broker_module.cc
index 71a007a..d90cf70 100644
--- a/ceee/ie/broker/broker_module.cc
+++ b/ceee/ie/broker/broker_module.cc
@@ -110,7 +110,8 @@ CeeeBrokerModule::CeeeBrokerModule()
logfile_path,
logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG,
logging::LOCK_LOG_FILE,
- logging::APPEND_TO_OLD_LOG_FILE);
+ logging::APPEND_TO_OLD_LOG_FILE,
+ logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS);
// Initialize ETW logging.
logging::LogEventProvider::Initialize(kCeeeBrokerLogProviderName);
diff --git a/ceee/ie/plugin/toolband/toolband_module.cc b/ceee/ie/plugin/toolband/toolband_module.cc
index bb5ee4a..c41bd23 100644
--- a/ceee/ie/plugin/toolband/toolband_module.cc
+++ b/ceee/ie/plugin/toolband/toolband_module.cc
@@ -98,7 +98,8 @@ ToolbandModule::ToolbandModule()
logfile_path,
logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG,
logging::LOCK_LOG_FILE,
- logging::APPEND_TO_OLD_LOG_FILE);
+ logging::APPEND_TO_OLD_LOG_FILE,
+ logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS);
// Initialize ETW logging.
logging::LogEventProvider::Initialize(kCeeeIeLogProviderName);
diff --git a/ceee/installer_dll/installer_helper.cc b/ceee/installer_dll/installer_helper.cc
index f20c8e8..2128228 100644
--- a/ceee/installer_dll/installer_helper.cc
+++ b/ceee/installer_dll/installer_helper.cc
@@ -46,7 +46,8 @@ InstallerHelperModule::InstallerHelperModule() {
logfile_path,
logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG,
logging::LOCK_LOG_FILE,
- logging::APPEND_TO_OLD_LOG_FILE);
+ logging::APPEND_TO_OLD_LOG_FILE,
+ logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS);
}
InstallerHelperModule _AtlModule;