tap: remove the local vlib_log_info definition
[vpp.git] / src / vnet / devices / tap / tap.c
index 2341bbb..d3ed2af 100644 (file)
@@ -31,7 +31,6 @@
 #include <linux/rtnetlink.h>
 
 #include <vlib/vlib.h>
-#include <vlib/log.h>
 #include <vlib/unix/unix.h>
 #include <vnet/ethernet/ethernet.h>
 #include <vnet/ip/ip4_packet.h>
@@ -511,21 +510,16 @@ tap_dump_ifs (tap_interface_details_t ** out_tapids)
   return 0;
 }
 
-#define vlib_log_info(...) vlib_log(VLIB_LOG_LEVEL_INFO, __VA_ARGS__)
-
 static clib_error_t *
 tap_init (vlib_main_t * vm)
 {
   tap_main_t *tm = &tap_main;
-  clib_error_t *error;
-  error = vlib_call_init_function (vm, vlib_log_init);
-  if (error)
-    return error;
+  clib_error_t *error = 0;
 
   tm->log_default = vlib_log_register_class ("tap", 0);
-  vlib_log_info (tm->log_default, "initialized");
+  vlib_log_debug (tm->log_default, "initialized");
 
-  return NULL;
+  return error;
 }
 
 VLIB_INIT_FUNCTION (tap_init);