mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-01 04:16:30 -04:00
[EGD-4053] update queries [EGD-4053] connect Settings, SettingsAgent, SettingsMessages and queries [EGD-4053] change settings interface to async [EGD-4053] mock-logs.cpp commented out -duplicated symbol in linking [EGD-4053] review issues solved
13 lines
379 B
C++
13 lines
379 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
/*#include <log/log.hpp>
|
|
#include <cstdarg>
|
|
__attribute__((weak)) void log_Log(
|
|
logger_level level, const char *file, int line, const char *function, const char *fmt, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, fmt);
|
|
va_end(args);
|
|
}*/
|