Go to the documentation of this file.
31 #ifndef __STUMPLESS_LEVEL_TRACE_H
32 # define __STUMPLESS_LEVEL_TRACE_H
36 # ifndef STUMPLESS_DISABLE_TRACE_LEVEL
106 # ifdef STUMPLESS_DISABLE_TRACE_LEVEL
107 # define stump_t( ... ) ( 0 )
109 # define stump_t( ... ) \
110 stumpless_trace_log( stumpless_get_current_target( ), \
111 STUMPLESS_SEVERITY_DEBUG | STUMPLESS_DEFAULT_FACILITY, \
172 # ifdef STUMPLESS_DISABLE_TRACE_LEVEL
173 # define stump_t_str( message ) ( 0 )
175 # define stump_t_str( message ) \
176 stumpless_trace_log_str( stumpless_get_current_target( ), \
177 STUMPLESS_SEVERITY_DEBUG | STUMPLESS_DEFAULT_FACILITY,\
233 # ifdef STUMPLESS_DISABLE_TRACE_LEVEL
234 # define stump_t_entry( target, entry ) ( 0 )
236 # define stump_t_entry( target, entry ) \
237 stumpless_trace_entry( ( target ), ( entry ), __FILE__, __LINE__, __func__ )
303 # ifdef STUMPLESS_DISABLE_TRACE_LEVEL
304 # define stump_t_log( target, priority, ... ) ( 0 )
306 # define stump_t_log( target, priority, ... ) \
307 stumpless_trace_log( ( target ), \
369 # ifdef STUMPLESS_DISABLE_TRACE_LEVEL
370 # define stump_t_log_str( target, priority, message ) ( 0 )
372 # define stump_t_log_str( target, priority, message ) \
373 stumpless_trace_log_str( ( target ), \
445 # ifdef STUMPLESS_DISABLE_TRACE_LEVEL
446 # define stump_t_message( target, ... ) ( 0 )
448 # define stump_t_message( target, ... ) \
449 stumpless_trace_log( ( target ), \
450 STUMPLESS_DEFAULT_FACILITY | STUMPLESS_SEVERITY_DEBUG, \
512 # ifdef STUMPLESS_DISABLE_TRACE_LEVEL
513 # define stump_t_message_str( target, message ) ( 0 )
515 # define stump_t_message_str( target, message ) \
516 stumpless_trace_log_str( ( target ), \
517 STUMPLESS_DEFAULT_FACILITY | STUMPLESS_SEVERITY_DEBUG,\
579 # ifdef STUMPLESS_DISABLE_TRACE_LEVEL
580 # define stumplog_t( priority, ... ) ( ( void ) 0 )
582 # define stumplog_t( priority, ... ) \
583 stumplog_trace( ( priority ), __FILE__, __LINE__, __func__, __VA_ARGS__ )
632 # ifdef STUMPLESS_DISABLE_TRACE_LEVEL
633 # define stumplog_t_str( priority, message ) ( ( void ) 0 )
635 # define stumplog_t_str( priority, message ) \
636 stumplog_trace_str( ( priority ), __FILE__, __LINE__, __func__, ( message ) )