diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-03 15:01:12 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-03 15:01:12 +0000 |
commit | 52a261f59b20e89f8c5936bce642362f8e367b57 (patch) | |
tree | fcc7b3c100caaf43848cd9a241beafc883f93b7d /base/logging.cc | |
parent | 7d926f9072ac496db6df715cc6a6bd5d3f9bd011 (diff) | |
download | chromium_src-52a261f59b20e89f8c5936bce642362f8e367b57.zip chromium_src-52a261f59b20e89f8c5936bce642362f8e367b57.tar.gz chromium_src-52a261f59b20e89f8c5936bce642362f8e367b57.tar.bz2 |
NO CODE CHANGE (except one global std::wstring changed to const wchar_t* const per style compliance).
Preliminary work to enforce new PRESUBMIT.py rules:
- <=80 cols
- no trailing whitespaces
- svn:eol-style=LF
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10791 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/logging.cc')
-rw-r--r-- | base/logging.cc | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/base/logging.cc b/base/logging.cc index 4daefcd..a1e7cb2 100644 --- a/base/logging.cc +++ b/base/logging.cc @@ -40,7 +40,7 @@ typedef pthread_mutex_t* MutexHandle; #include "base/string_piece.h" #include "base/string_util.h" #include "base/sys_string_conversions.h" - + namespace logging { bool g_enable_dcheck = false; @@ -406,7 +406,8 @@ void LogMessage::Init(const char* file, int line) { } if (log_tickcount) stream_ << TickCount() << ':'; - stream_ << log_severity_names[severity_] << ":" << file << "(" << line << ")] "; + stream_ << log_severity_names[severity_] << ":" << file << + "(" << line << ")] "; message_start_ = stream_.tellp(); } @@ -452,16 +453,16 @@ LogMessage::~LogMessage() { // problems with unit tests, especially on the buildbots. fprintf(stderr, "%s", str_newline.c_str()); } - + // write to log file if (logging_destination != LOG_NONE && logging_destination != LOG_ONLY_TO_SYSTEM_DEBUG_LOG && InitializeLogFileHandle()) { - // we can have multiple threads and/or processes, so try to prevent them from - // clobbering each other's writes + // We can have multiple threads and/or processes, so try to prevent them + // from clobbering each other's writes. if (lock_log_file == LOCK_LOG_FILE) { // Ensure that the mutex is initialized in case the client app did not - // call InitLogging. This is not thread safe. See below + // call InitLogging. This is not thread safe. See below. InitLogMutex(); #if defined(OS_WIN) @@ -486,7 +487,11 @@ LogMessage::~LogMessage() { #if defined(OS_WIN) SetFilePointer(log_file, 0, 0, SEEK_END); DWORD num_written; - WriteFile(log_file, (void*)str_newline.c_str(), (DWORD)str_newline.length(), &num_written, NULL); + WriteFile(log_file, + static_cast<void*>(str_newline.c_str()), + static_cast<DWORD>(str_newline.length()), + &num_written, + NULL); #else fprintf(log_file, "%s", str_newline.c_str()); #endif |