#include "components/drive/event_logger.h"
#include "base/logging.h"
#include "base/strings/stringprintf.h"
namespace drive {
EventLogger::Event::Event(
int id, logging::LogSeverity severity, const std::string& what)
: … { … }
EventLogger::EventLogger()
: … { … }
EventLogger::~EventLogger() = default;
void EventLogger::LogRawString(logging::LogSeverity severity,
const std::string& what) { … }
void EventLogger::Log(logging::LogSeverity severity, const char* format, ...) { … }
void EventLogger::SetHistorySize(size_t history_size) { … }
std::vector<EventLogger::Event> EventLogger::GetHistory() { … }
}