xref: /dpdk/lib/acl/acl_log.h (revision 97433132c2edda70ff69843b8f9273853cac984c)
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