chromium/components/mirroring/service/mirroring_logger.cc

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

#include "components/mirroring/service/mirroring_logger.h"

#include <string>
#include <string_view>

#include "base/strings/strcat.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "components/mirroring/mojom/session_observer.mojom.h"

namespace mirroring {

constexpr char kLogPrefix[] =;

MirroringLogger::MirroringLogger(std::string_view prefix,
                                 mojo::Remote<mojom::SessionObserver>& observer)
    :{}
MirroringLogger::~MirroringLogger() = default;

void MirroringLogger::LogInfo(std::string_view message) {}

void MirroringLogger::LogError(std::string_view message) {}

void MirroringLogger::LogError(mojom::SessionError error,
                               std::string_view message) {}

void MirroringLogger::LogInfoInternal(const std::string& message) {}

void MirroringLogger::LogErrorInternal(const std::string& message) {}

}  // namespace mirroring