
Type: improvement Change-Id: I9b9bb37a0895366b412f042b0e2da5bbdd477325 Signed-off-by: Damjan Marion <damarion@cisco.com>
23 lines
1.0 KiB
C
23 lines
1.0 KiB
C
/* SPDX-License-Identifier: Apache-2.0
|
|
* Copyright (c) 2023 Cisco Systems, Inc.
|
|
*/
|
|
|
|
#ifndef _VNET_DEV_LOG_H_
|
|
#define _VNET_DEV_LOG_H_
|
|
|
|
#define log_debug(dev, f, ...) \
|
|
vlib_log (VLIB_LOG_LEVEL_DEBUG, dev_log.class, "%U" f, format_vnet_dev_log, \
|
|
dev, clib_string_skip_prefix (__func__, "vnet_dev_"), \
|
|
##__VA_ARGS__)
|
|
#define log_notice(dev, f, ...) \
|
|
vlib_log (VLIB_LOG_LEVEL_NOTICE, dev_log.class, "%U" f, \
|
|
format_vnet_dev_log, dev, 0, ##__VA_ARGS__)
|
|
#define log_warn(dev, f, ...) \
|
|
vlib_log (VLIB_LOG_LEVEL_WARNING, dev_log.class, "%U" f, \
|
|
format_vnet_dev_log, dev, 0, ##__VA_ARGS__)
|
|
#define log_err(dev, f, ...) \
|
|
vlib_log (VLIB_LOG_LEVEL_ERR, dev_log.class, "%U" f, format_vnet_dev_log, \
|
|
dev, 0, ##__VA_ARGS__)
|
|
|
|
#endif /* _VNET_DEV_LOG_H_ */
|