2015-10-16 12:42:26 -07:00
|
|
|
#include <stdlib.h>
|
2015-08-25 21:59:01 -07:00
|
|
|
#include <px4_log.h>
|
2015-10-19 09:48:27 +02:00
|
|
|
#ifdef __PX4_POSIX
|
2015-10-16 12:42:26 -07:00
|
|
|
#include <execinfo.h>
|
2015-10-19 09:48:27 +02:00
|
|
|
#endif
|
2016-08-12 11:11:11 +02:00
|
|
|
#include <uORB/uORB.h>
|
|
|
|
|
#include <uORB/topics/log_message.h>
|
|
|
|
|
#include <drivers/drv_hrt.h>
|
2015-08-25 21:59:01 -07:00
|
|
|
|
2016-08-12 11:11:11 +02:00
|
|
|
static orb_advert_t orb_log_message_pub = NULL;
|
2015-08-25 21:59:01 -07:00
|
|
|
|
2015-10-19 09:48:27 +02:00
|
|
|
__EXPORT const char *__px4_log_level_str[_PX4_LOG_LEVEL_PANIC + 1] = { "INFO", "DEBUG", "WARN", "ERROR", "PANIC" };
|
2016-06-09 12:51:04 +02:00
|
|
|
__EXPORT const char *__px4_log_level_color[_PX4_LOG_LEVEL_PANIC + 1] =
|
2016-06-09 13:16:04 +02:00
|
|
|
{ PX4_ANSI_COLOR_RESET, PX4_ANSI_COLOR_GREEN, PX4_ANSI_COLOR_YELLOW, PX4_ANSI_COLOR_RED, PX4_ANSI_COLOR_RED };
|
2015-10-16 12:42:26 -07:00
|
|
|
|
2016-08-12 11:11:11 +02:00
|
|
|
|
|
|
|
|
void px4_log_initialize(void)
|
|
|
|
|
{
|
|
|
|
|
ASSERT(orb_log_message_pub == NULL);
|
|
|
|
|
|
|
|
|
|
/* we need to advertise with a valid message */
|
|
|
|
|
struct log_message_s log_message;
|
|
|
|
|
log_message.timestamp = hrt_absolute_time();
|
|
|
|
|
log_message.severity = 6; //info
|
|
|
|
|
strcpy((char *)log_message.text, "initialized uORB logging");
|
|
|
|
|
|
|
|
|
|
orb_log_message_pub = orb_advertise_queue(ORB_ID(log_message), &log_message, 2);
|
|
|
|
|
|
|
|
|
|
if (!orb_log_message_pub) {
|
|
|
|
|
PX4_ERR("failed to advertise log_message");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 12:42:26 -07:00
|
|
|
void px4_backtrace()
|
|
|
|
|
{
|
2015-10-19 09:48:27 +02:00
|
|
|
#ifdef __PX4_POSIX
|
2015-10-16 12:42:26 -07:00
|
|
|
void *buffer[10];
|
|
|
|
|
char **callstack;
|
|
|
|
|
int bt_size;
|
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
|
|
bt_size = backtrace(buffer, 10);
|
|
|
|
|
callstack = backtrace_symbols(buffer, bt_size);
|
|
|
|
|
|
2015-10-19 09:48:27 +02:00
|
|
|
PX4_INFO("Backtrace: %d", bt_size);
|
2015-10-16 12:42:26 -07:00
|
|
|
|
2015-10-19 09:48:27 +02:00
|
|
|
for (idx = 0; idx < bt_size; idx++) {
|
2015-10-16 12:42:26 -07:00
|
|
|
PX4_INFO("%s", callstack[idx]);
|
2015-10-19 09:48:27 +02:00
|
|
|
}
|
2015-10-16 12:42:26 -07:00
|
|
|
|
|
|
|
|
free(callstack);
|
2015-10-19 09:48:27 +02:00
|
|
|
#endif
|
2015-10-16 12:42:26 -07:00
|
|
|
}
|
2016-07-06 11:52:08 -10:00
|
|
|
|
|
|
|
|
__EXPORT void px4_log_modulename(int level, const char *moduleName, const char *fmt, ...)
|
|
|
|
|
{
|
2016-08-12 08:57:08 +02:00
|
|
|
PX4_LOG_COLOR_START
|
|
|
|
|
printf(__px4__log_level_fmt __px4__log_level_arg(level));
|
|
|
|
|
PX4_LOG_COLOR_MODULE
|
|
|
|
|
printf(__px4__log_modulename_pfmt, moduleName);
|
|
|
|
|
PX4_LOG_COLOR_MESSAGE
|
|
|
|
|
va_list argptr;
|
|
|
|
|
va_start(argptr, fmt);
|
|
|
|
|
vprintf(fmt, argptr);
|
|
|
|
|
va_end(argptr);
|
|
|
|
|
PX4_LOG_COLOR_END
|
|
|
|
|
printf("\n");
|
2016-08-12 11:11:11 +02:00
|
|
|
|
|
|
|
|
/* publish an orb log message */
|
|
|
|
|
if (level >= _PX4_LOG_LEVEL_WARN && orb_log_message_pub) { //only publish important messages
|
|
|
|
|
|
|
|
|
|
struct log_message_s log_message;
|
|
|
|
|
const unsigned max_length = sizeof(log_message.text);
|
|
|
|
|
log_message.timestamp = hrt_absolute_time();
|
|
|
|
|
|
|
|
|
|
const uint8_t log_level_table[] = {
|
|
|
|
|
6, /* _PX4_LOG_LEVEL_ALWAYS */
|
|
|
|
|
7, /* _PX4_LOG_LEVEL_DEBUG */
|
|
|
|
|
4, /* _PX4_LOG_LEVEL_WARN */
|
|
|
|
|
3, /* _PX4_LOG_LEVEL_ERROR */
|
|
|
|
|
0 /* _PX4_LOG_LEVEL_PANIC */
|
|
|
|
|
};
|
|
|
|
|
log_message.severity = log_level_table[level];
|
|
|
|
|
|
|
|
|
|
unsigned pos = 0;
|
|
|
|
|
|
|
|
|
|
pos += snprintf((char *)log_message.text + pos, max_length - pos, __px4__log_modulename_pfmt, moduleName);
|
|
|
|
|
va_start(argptr, fmt);
|
|
|
|
|
pos += vsnprintf((char *)log_message.text + pos, max_length - pos, fmt, argptr);
|
|
|
|
|
va_end(argptr);
|
|
|
|
|
log_message.text[max_length - 1] = 0; //ensure 0-termination
|
|
|
|
|
|
|
|
|
|
orb_publish(ORB_ID(log_message), orb_log_message_pub, &log_message);
|
|
|
|
|
|
|
|
|
|
}
|
2016-07-06 11:52:08 -10:00
|
|
|
}
|
|
|
|
|
|