blob: 2281712da7649af5ed2a383d1e21c3a4c05c988e [file] [log] [blame]
/*
* Copyright (c) 2018 Nordic Semiconductor
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
* @brief Test module for log core test
*
*/
#include <logging/log.h>
LOG_MODULE_DECLARE(test);
void test_func(void)
{
LOG_ERR("test");
}