Logging
Logging — logging facilities
|
|
Includes
#include <gum/common/gum-log.h>
Description
gum/common/gum-log.h file contains logging macros
For example:
Functions
TRACEBACK
#define TRACEBACK()
This macro prints the current function call stack to stderr.
ERR()
#define ERR(frmt, args...)
Use this macro to log error messages. Gum will take care of
correctly saving them.
WARN()
#define WARN(frmt, args...)
Use this macro to log warning messages. Gum will take care of
correctly saving them.
INFO()
#define INFO(frmt, args...)
Use this macro to log informational messages. Gum will take care of
correctly saving them.
DBG()
#define DBG(frmt, args...)
Use this macro to log debug messages. Gum will take care of
correctly saving them.