QuRT: Changed PX4_DEBUG output from verbose to omit

Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
Mark Charlebois 2015-05-21 15:45:13 -07:00
parent f1f562a94d
commit 6ae6c29879
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@
#if defined(__PX4_QURT)
#include <stdio.h>
#define PX4_DEBUG(...) __px4_log_verbose("DEBUG", __VA_ARGS__);
#define PX4_DEBUG(...) __px4_log_omit("DEBUG", __VA_ARGS__);
#define PX4_INFO(...) __px4_log("INFO", __VA_ARGS__);
#define PX4_WARN(...) __px4_log_verbose("WARN", __VA_ARGS__);
#define PX4_ERR(...) __px4_log_verbose("ERROR", __VA_ARGS__);