X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=gmod%2Fgmod%2Fmod_vpp.c;h=71479d2afba9ff1e6f1f912c72db36623a8737a6;hb=940d1c8a18d672c37c6545ffdabd090d29f09850;hp=4a1da83cacdec8f10f40ee07eb169437a13e4e59;hpb=98cfc1aab07d311b53b0171fad62a4031c96fcfd;p=vpp.git diff --git a/gmod/gmod/mod_vpp.c b/gmod/gmod/mod_vpp.c index 4a1da83cacd..71479d2afba 100644 --- a/gmod/gmod/mod_vpp.c +++ b/gmod/gmod/mod_vpp.c @@ -21,7 +21,7 @@ #include #include #include -#include +#include #include mmodule vpp_module; @@ -37,14 +37,14 @@ static int vpp_metric_init (apr_pool_t *p) int i; if (str_params) { - debug_msg("[mod_vpp]Received string params: %s", str_params); + clib_warning("[mod_vpp]Received string params: %s", str_params); } /* Multiple name/value pair parameters. */ if (list_params) { - debug_msg("[mod_vpp]Received following params list: "); + clib_warning("[mod_vpp]Received following params list: "); params = (mmparam*) list_params->elts; for(i=0; i< list_params->nelts; i++) { - debug_msg("\tParam: %s = %s", params[i].name, params[i].value); + clib_warning("\tParam: %s = %s", params[i].name, params[i].value); } }