#include <folly/logging/BridgeFromGoogleLogging.h>
#include <folly/Utility.h>
#include <folly/logging/Logger.h>
#include <folly/logging/xlog.h>
namespace folly {
namespace logging {
namespace {
constexpr folly::LogLevel asFollyLogLevel(::google::LogSeverity severity) { … }
}
BridgeFromGoogleLogging::BridgeFromGoogleLogging() { … }
BridgeFromGoogleLogging::~BridgeFromGoogleLogging() noexcept { … }
void BridgeFromGoogleLogging::send(
::google::LogSeverity severity,
const char* full_filename,
const char* base_filename,
int line,
const struct ::tm* pTime,
const char* message,
size_t message_len,
int32_t usecs) { … }
void BridgeFromGoogleLogging::send(
::google::LogSeverity severity,
const char* full_filename,
const char* base_filename,
int line,
const struct ::tm* pTime,
const char* message,
size_t message_len) { … }
}
}