diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-10 19:59:52 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-10 19:59:52 +0000 |
commit | 941635a75dae04279729e9f6ca6d553c912da3d6 (patch) | |
tree | 2d79a154c35bc9bc31693a7017a8591cf524dcb5 /ceee | |
parent | ddcbb213c0fd94f07428c14fd29513b13b9fe1f9 (diff) | |
download | chromium_src-941635a75dae04279729e9f6ca6d553c912da3d6.zip chromium_src-941635a75dae04279729e9f6ca6d553c912da3d6.tar.gz chromium_src-941635a75dae04279729e9f6ca6d553c912da3d6.tar.bz2 |
Revert 70920 - 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
Review URL: http://codereview.chromium.org/6070006
TBR=akalin@chromium.org
Review URL: http://codereview.chromium.org/6099012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70923 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ceee')
-rw-r--r-- | ceee/ie/broker/broker_module.cc | 3 | ||||
-rw-r--r-- | ceee/ie/plugin/toolband/toolband_module.cc | 3 | ||||
-rw-r--r-- | ceee/installer_dll/installer_helper.cc | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/ceee/ie/broker/broker_module.cc b/ceee/ie/broker/broker_module.cc index d90cf70..71a007a 100644 --- a/ceee/ie/broker/broker_module.cc +++ b/ceee/ie/broker/broker_module.cc @@ -110,8 +110,7 @@ CeeeBrokerModule::CeeeBrokerModule() logfile_path, logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG, logging::LOCK_LOG_FILE, - logging::APPEND_TO_OLD_LOG_FILE, - logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); + logging::APPEND_TO_OLD_LOG_FILE); // 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 c41bd23..bb5ee4a 100644 --- a/ceee/ie/plugin/toolband/toolband_module.cc +++ b/ceee/ie/plugin/toolband/toolband_module.cc @@ -98,8 +98,7 @@ ToolbandModule::ToolbandModule() logfile_path, logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG, logging::LOCK_LOG_FILE, - logging::APPEND_TO_OLD_LOG_FILE, - logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); + logging::APPEND_TO_OLD_LOG_FILE); // Initialize ETW logging. logging::LogEventProvider::Initialize(kCeeeIeLogProviderName); diff --git a/ceee/installer_dll/installer_helper.cc b/ceee/installer_dll/installer_helper.cc index 2128228..f20c8e8 100644 --- a/ceee/installer_dll/installer_helper.cc +++ b/ceee/installer_dll/installer_helper.cc @@ -46,8 +46,7 @@ InstallerHelperModule::InstallerHelperModule() { logfile_path, logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG, logging::LOCK_LOG_FILE, - logging::APPEND_TO_OLD_LOG_FILE, - logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); + logging::APPEND_TO_OLD_LOG_FILE); } InstallerHelperModule _AtlModule; |