mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-03 14:06:54 +00:00
The CONFIG_LOG_DESTINATION parameter selects where the logging messages send to,serial console or memory or npk device MMIO region. Now we want to remove it and check the loglevel of each channel,close the output when the loglevel is ZERO. Tracked-On: #6934 Signed-off-by: Chenli Wei <chenli.wei@intel.com> Acked-by: Anthony Xu <anthony.xu@intel.com>
13 lines
344 B
C
13 lines
344 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <types.h>
|
|
|
|
void init_logmsg() {}
|
|
void do_logmsg(__unused uint32_t severity, __unused const char *fmt, ...) {}
|
|
void printf(__unused const char *fmt, ...) {}
|
|
void vprintf(__unused const char *fmt, __unused va_list args) {}
|