1#ifndef BACKENDS_P4TOOLS_COMMON_LIB_LOGGING_H_
2#define BACKENDS_P4TOOLS_COMMON_LIB_LOGGING_H_
8#include "backends/p4tools/common/lib/util.h"
14template <
typename... Arguments>
15void printInfo(
const std::string &fmt, Arguments &&...args) {
16 printFeature(
"test_info", 4, fmt, std::forward<Arguments>(args)...);