chromium/components/openscreen_platform/logging.cc

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

#include "third_party/openscreen/src/platform/api/logging.h"

#include <cstring>
#include <sstream>
#include <string_view>

#include "base/debug/debugger.h"
#include "base/immediate_crash.h"
#include "base/logging.h"

namespace openscreen {

namespace {

::logging::LogSeverity MapLogLevel(LogLevel level) {}

}  // namespace

bool IsLoggingOn(LogLevel level, const std::string_view file) {}

void LogWithLevel(LogLevel level,
                  const char* file,
                  int line,
                  std::stringstream message) {}

void Break() {}

}  // namespace openscreen