summaryrefslogtreecommitdiff
path: root/lib/table/table_log.h
blob: b24b8614c227be014cd8f3139da712570957ff7d (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright (c) 2023 Red Hat, Inc.
 */

#include <rte_log.h>

extern int table_logtype;
#define RTE_LOGTYPE_TABLE table_logtype

#define TABLE_LOG(level, ...) \
	RTE_LOG_LINE(level, TABLE, "" __VA_ARGS__)