chromium/chrome/browser/sync_file_system/logger.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/sync_file_system/logger.h"

#include "base/files/file_util.h"
#include "base/lazy_instance.h"
#include "base/location.h"
#include "base/notreached.h"
#include "base/strings/stringprintf.h"
#include "components/drive/event_logger.h"

namespace sync_file_system {
namespace util {
namespace {

static base::LazyInstance<drive::EventLogger>::DestructorAtExit g_logger =;

const char* LogSeverityToString(logging::LogSeverity level) {}

}  // namespace

void ClearLog() {}

void Log(logging::LogSeverity severity,
         const base::Location& location,
         const char* format,
         ...) {}

std::vector<drive::EventLogger::Event> GetLogHistory() {}

}  // namespace util
}  // namespace sync_file_system