b2d19c8d88
For all trace not on the data-path move to dynamic logging. Signed-off-by: Tomasz Jozwiak <tomaszx.jozwiak@intel.com> Signed-off-by: Fiona Trahe <fiona.trahe@intel.com>
15 lines
323 B
C
15 lines
323 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2015-2018 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _QAT_LOGS_H_
|
|
#define _QAT_LOGS_H_
|
|
|
|
extern int qat_gen_logtype;
|
|
|
|
#define PMD_DRV_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, qat_gen_logtype, \
|
|
"%s(): " fmt "\n", __func__, ## args)
|
|
|
|
#endif /* _QAT_LOGS_H_ */
|