blob: b0d566d6ab05a96a453e9e06c6770bd2196eea06 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/components/multidevice/logging/logging.h"
#include "chromeos/components/multidevice/logging/log_buffer.h"
namespace chromeos {
namespace multidevice {
namespace {
bool g_logging_enabled = true;
} // namespace
ScopedDisableLoggingForTesting::ScopedDisableLoggingForTesting() {
g_logging_enabled = false;
}
ScopedDisableLoggingForTesting::~ScopedDisableLoggingForTesting() {
g_logging_enabled = true;
}
ScopedLogMessage::ScopedLogMessage(const char* file,
int line,
logging::LogSeverity severity)
: file_(file), line_(line), severity_(severity) {}
ScopedLogMessage::~ScopedLogMessage() {
if (!g_logging_enabled)
return;
const std::string string_from_stream = stream_.str();
LogBuffer::GetInstance()->AddLogMessage(LogBuffer::LogMessage(
string_from_stream, base::Time::Now(), file_, line_, severity_));
// Don't emit VERBOSE-level logging to the standard logging system unless
// verbose logging is enabled for the source file.
if (severity_ <= logging::LOG_VERBOSE &&
logging::GetVlogLevelHelper(file_, strlen(file_) + 1) <= 0) {
return;
}
// The destructor of |log_message| also creates a log for the standard logging
// system.
logging::LogMessage log_message(file_, line_, severity_);
log_message.stream() << string_from_stream;
}
} // namespace multidevice
} // namespace chromeos