mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-19 22:49:06 -04:00
Split module-utils into smaller components for better dependency management. Fix many dependencies throughout the project. Signed-off-by: Marcin Smoczyński <smoczynski.marcin@gmail.com>
22 lines
504 B
C++
22 lines
504 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include <log/log.hpp>
|
|
#include <Logger.hpp>
|
|
#include <iostream>
|
|
#include <string_view>
|
|
#include <ticks.hpp>
|
|
|
|
namespace Log
|
|
{
|
|
void Logger::logToDevice(const char *, va_list)
|
|
{
|
|
assert(false && "Not implemented");
|
|
}
|
|
|
|
void Logger::logToDevice(Device, std::string_view logMsg, size_t)
|
|
{
|
|
std::cout << logMsg;
|
|
}
|
|
} // namespace Log
|