Lines Matching defs:level
48 int BPFController::LIBBPFPrintFunc(enum libbpf_print_level level, const char *format, va_list args)
51 return libbpfLogger->Printf(level, format, args);
142 // set up libbpf deubug level
265 static inline int InitBPFLogLevel(const int fd, const __u32 level)
267 if (level == BPF_LOG_NONE) {
268 HHLOGD(true, "bpf log level is NONE!");
272 int err = bpf_map_update_elem(fd, &levelidx, &level, BPF_ANY);
273 CHECK_TRUE(!err, -1, "failed to set bpf log level in config_var_map");
298 "failed to init BPF log level in config_var_map");
338 HHLOGD(true, "bpf log level is NONE!");
352 HHLOGI(true, "libbpf logger: file = %s, level = %d", config_.LIBBPFLogFile_.c_str(), config_.LIBBPFLogLevel_);
355 HHLOGD(true, "libbpf log level is NONE!");