mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-15 09:33:50 +01:00
19 lines
346 B
C
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");
|
|
}
|