Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: chrome/common/logging_chrome.cc

Issue 3035050: base: rename Environment::HasEnv to Environment::HasVar. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/safe_browsing/protocol_manager.cc ('k') | chrome/common/process_watcher_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "build/build_config.h" 5 #include "build/build_config.h"
6 6
7 // Need to include this before most other files because it defines 7 // Need to include this before most other files because it defines
8 // IPC_MESSAGE_LOG_ENABLED. We need to use it to define 8 // IPC_MESSAGE_LOG_ENABLED. We need to use it to define
9 // IPC_MESSAGE_MACROS_LOG_ENABLED so render_messages.h will generate the 9 // IPC_MESSAGE_MACROS_LOG_ENABLED so render_messages.h will generate the
10 // ViewMsgLog et al. functions. 10 // ViewMsgLog et al. functions.
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 delete_old_log_file); 198 delete_old_log_file);
199 199
200 // we want process and thread IDs because we have a lot of things running 200 // we want process and thread IDs because we have a lot of things running
201 logging::SetLogItems(true, true, false, true); 201 logging::SetLogItems(true, true, false, true);
202 202
203 // We call running in unattended mode "headless", and allow 203 // We call running in unattended mode "headless", and allow
204 // headless mode to be configured either by the Environment 204 // headless mode to be configured either by the Environment
205 // Variable or by the Command Line Switch. This is for 205 // Variable or by the Command Line Switch. This is for
206 // automated test purposes. 206 // automated test purposes.
207 scoped_ptr<base::Environment> env(base::Environment::Create()); 207 scoped_ptr<base::Environment> env(base::Environment::Create());
208 if (env->HasEnv(env_vars::kHeadless) || 208 if (env->HasVar(env_vars::kHeadless) ||
209 command_line.HasSwitch(switches::kNoErrorDialogs)) 209 command_line.HasSwitch(switches::kNoErrorDialogs))
210 SuppressDialogs(); 210 SuppressDialogs();
211 211
212 std::string log_filter_prefix = 212 std::string log_filter_prefix =
213 command_line.GetSwitchValueASCII(switches::kLogFilterPrefix); 213 command_line.GetSwitchValueASCII(switches::kLogFilterPrefix);
214 logging::SetLogFilterPrefix(log_filter_prefix.c_str()); 214 logging::SetLogFilterPrefix(log_filter_prefix.c_str());
215 215
216 // Use a minimum log level if the command line has one, otherwise set the 216 // Use a minimum log level if the command line has one, otherwise set the
217 // default to LOG_WARNING. 217 // default to LOG_WARNING.
218 std::string log_level = command_line.GetSwitchValueASCII( 218 std::string log_level = command_line.GetSwitchValueASCII(
219 switches::kLoggingLevel); 219 switches::kLoggingLevel);
220 int level = 0; 220 int level = 0;
221 if (base::StringToInt(log_level, &level)) { 221 if (base::StringToInt(log_level, &level)) {
222 if ((level >= 0) && (level < LOG_NUM_SEVERITIES)) 222 if ((level >= 0) && (level < LOG_NUM_SEVERITIES))
223 logging::SetMinLogLevel(level); 223 logging::SetMinLogLevel(level);
224 } else { 224 } else {
225 logging::SetMinLogLevel(LOG_WARNING); 225 logging::SetMinLogLevel(LOG_WARNING);
226 } 226 }
227 227
228 #if defined(OS_WIN) 228 #if defined(OS_WIN)
229 // Enable trace control and transport through event tracing for Windows. 229 // Enable trace control and transport through event tracing for Windows.
230 if (env->HasEnv(env_vars::kEtwLogging)) 230 if (env->HasVar(env_vars::kEtwLogging))
231 logging::LogEventProvider::Initialize(kChromeTraceProviderName); 231 logging::LogEventProvider::Initialize(kChromeTraceProviderName);
232 #endif 232 #endif
233 233
234 chrome_logging_initialized_ = true; 234 chrome_logging_initialized_ = true;
235 } 235 }
236 236
237 // This is a no-op, but we'll keep it around in case 237 // This is a no-op, but we'll keep it around in case
238 // we need to do more cleanup in the future. 238 // we need to do more cleanup in the future.
239 void CleanupChromeLogging() { 239 void CleanupChromeLogging() {
240 DCHECK(chrome_logging_initialized_) << 240 DCHECK(chrome_logging_initialized_) <<
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 assertions->push_back(wide_line); 295 assertions->push_back(wide_line);
296 ++assertion_count; 296 ++assertion_count;
297 } 297 }
298 } 298 }
299 log_file.close(); 299 log_file.close();
300 300
301 return assertion_count; 301 return assertion_count;
302 } 302 }
303 303
304 } // namespace logging 304 } // namespace logging
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/protocol_manager.cc ('k') | chrome/common/process_watcher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698