summaryrefslogtreecommitdiffstats
path: root/ceee/installer_dll
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-10 19:30:16 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-10 19:30:16 +0000
commit3ab155c9b0b17d7edd376091ed6f2ac6a4695457 (patch)
tree864a23dbec10048c4a9fb9e0e468490c6483926a /ceee/installer_dll
parent75998f628427d0e1da2c2ef00850a7c80dc3c8af (diff)
downloadchromium_src-3ab155c9b0b17d7edd376091ed6f2ac6a4695457.zip
chromium_src-3ab155c9b0b17d7edd376091ed6f2ac6a4695457.tar.gz
chromium_src-3ab155c9b0b17d7edd376091ed6f2ac6a4695457.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 Review URL: http://codereview.chromium.org/6070006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70920 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ceee/installer_dll')
-rw-r--r--ceee/installer_dll/installer_helper.cc3
1 files changed, 2 insertions, 1 deletions
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;