xref: /dpdk/lib/acl/acl_log.h (revision 3178e37c65a676366f33f0bc56f49d9b26a06448)
1 /* SPDX-License-Identifier: BSD-3-Clause */
2 
3 #include <rte_log.h>
4 
5 extern int acl_logtype;
6 #define RTE_LOGTYPE_ACL	acl_logtype
7 #define ACL_LOG(level, ...) \
8 	RTE_LOG_LINE(level, ACL, "" __VA_ARGS__)
9