Go to the documentation of this file. 20 #ifndef __XMMS_LOG_H__ 21 #define __XMMS_LOG_H__ 26 #define xmms_log_debug g_debug 32 #define XMMS_DBG(fmt, ...) xmms_log_debug (__FILE__ ":" XMMS_STRINGIFY(__LINE__) ": " fmt, ## __VA_ARGS__) 33 #define xmms_log_fatal(fmt, ...) g_error (__FILE__ ":" XMMS_STRINGIFY(__LINE__) ": " fmt, ## __VA_ARGS__) 34 #define xmms_log_info(fmt, ...) g_message (__FILE__ ":" XMMS_STRINGIFY(__LINE__) ": " fmt, ## __VA_ARGS__) 35 #define xmms_log_error(fmt, ...) g_warning (__FILE__ ":" XMMS_STRINGIFY(__LINE__) ": " fmt, ## __VA_ARGS__) 37 #define XMMS_DBG(fmt, ...) 38 #define xmms_log_fatal g_error 39 #define xmms_log_error g_warning 40 #define xmms_log_info g_message