1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-15 09:33:50 +01:00
RIOT/tests/sys/log_unit/log_without_unit.c
2025-07-16 14:49:35 +02:00

19 lines
346 B
C

/*
* SPDX-FileCopyrightText: 2025 ML!PA Consulting GmbH
* SPDX-License-Identifier: LGPL-2.1-only
*/
/**
* @file
* @brief Test logging with and without log unit.
*
* @author Mihai Renea <mihai.renea@ml-pa.com>
*/
#include "log.h"
void log_without_unit(void)
{
LOG_INFO("Hello!\n");
LOG_INFO("Hello %s!\n", "world");
}