From 8ffd052ba929d94eb587e4d55efc74557cd7454d Mon Sep 17 00:00:00 2001 From: "akalin@chromium.org" Date: Fri, 7 Jan 2011 21:44:54 +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 Review URL: http://codereview.chromium.org/6070006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70782 0039d316-1c4b-4281-b951-d872f2087c98 --- courgette/courgette_tool.cc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'courgette') diff --git a/courgette/courgette_tool.cc b/courgette/courgette_tool.cc index 5e37f30..7176442 100644 --- a/courgette/courgette_tool.cc +++ b/courgette/courgette_tool.cc @@ -346,10 +346,12 @@ int main(int argc, const char* argv[]) { CommandLine::Init(argc, argv); const CommandLine& command_line = *CommandLine::ForCurrentProcess(); - (void)logging::InitLogging(FILE_PATH_LITERAL("courgette.log"), - logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG, - logging::LOCK_LOG_FILE, - logging::APPEND_TO_OLD_LOG_FILE); + (void)logging::InitLogging( + FILE_PATH_LITERAL("courgette.log"), + 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::SetMinLogLevel(logging::LOG_VERBOSE); bool cmd_dis = command_line.HasSwitch("dis"); -- cgit v1.1