add FILE argument to debug functions
[dpdk.git] / app / test / test_logs.c
index 3d81053..730581a 100644 (file)
@@ -36,8 +36,6 @@
 #include <stdarg.h>
 #include <sys/queue.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_log.h>
 #include <rte_memory.h>
 #include <rte_memzone.h>
@@ -88,7 +86,7 @@ test_logs(void)
        RTE_LOG(DEBUG, TESTAPP1, "this is a debug level message\n");
        RTE_LOG(DEBUG, TESTAPP2, "debug level message (not displayed)\n");
 
-       rte_log_dump_history();
+       rte_log_dump_history(stdout);
 
        return 0;
 }