From 7c10f7553bf4da999f954e501fc2908e10dd3bcf Mon Sep 17 00:00:00 2001 From: "akalin@chromium.org" Date: Tue, 11 Jan 2011 01:03:36 +0000 Subject: 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 --- chrome/installer/util/logging_installer.cc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'chrome/installer') diff --git a/chrome/installer/util/logging_installer.cc b/chrome/installer/util/logging_installer.cc index d91ca70..73e1719 100644 --- a/chrome/installer/util/logging_installer.cc +++ b/chrome/installer/util/logging_installer.cc @@ -38,10 +38,12 @@ void InitInstallerLogging(const installer::MasterPreferences& prefs) { return; } - logging::InitLogging(GetLogFilePath(prefs).value().c_str(), - logging::LOG_ONLY_TO_FILE, - logging::LOCK_LOG_FILE, - logging::DELETE_OLD_LOG_FILE); + logging::InitLogging( + GetLogFilePath(prefs).value().c_str(), + logging::LOG_ONLY_TO_FILE, + logging::LOCK_LOG_FILE, + logging::DELETE_OLD_LOG_FILE, + logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); if (prefs.GetBool(installer::master_preferences::kVerboseLogging, &value) && value) { -- cgit v1.1