summaryrefslogtreecommitdiffstats
path: root/base/logging.cc
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-10 19:59:52 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-10 19:59:52 +0000
commit941635a75dae04279729e9f6ca6d553c912da3d6 (patch)
tree2d79a154c35bc9bc31693a7017a8591cf524dcb5 /base/logging.cc
parentddcbb213c0fd94f07428c14fd29513b13b9fe1f9 (diff)
downloadchromium_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 'base/logging.cc')
-rw-r--r--base/logging.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/logging.cc b/base/logging.cc
index bdce7b3..cfb1065 100644
--- a/base/logging.cc
+++ b/base/logging.cc
@@ -64,7 +64,7 @@ typedef pthread_mutex_t* MutexHandle;
namespace logging {
-DcheckState g_dcheck_state = DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS;
+bool g_enable_dcheck = false;
VlogInfo* g_vlog_info = NULL;
const char* const log_severity_names[LOG_NUM_SEVERITIES] = {
@@ -353,10 +353,10 @@ bool InitializeLogFileHandle() {
bool BaseInitLoggingImpl(const PathChar* new_log_file,
LoggingDestination logging_dest,
LogLockingState lock_log,
- OldFileDeletionState delete_old,
- DcheckState dcheck_state) {
+ OldFileDeletionState delete_old) {
CommandLine* command_line = CommandLine::ForCurrentProcess();
- g_dcheck_state = dcheck_state;
+ g_enable_dcheck =
+ command_line->HasSwitch(switches::kEnableDCHECK);
delete g_vlog_info;
g_vlog_info = NULL;
// Don't bother initializing g_vlog_info unless we use one of the