__VA_ARGS__       615 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.h #define SS7_DEBUG(a,...)	ftdm_log(FTDM_LOG_DEBUG,a , ##__VA_ARGS__ );
__VA_ARGS__       616 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.h #define SS7_INFO(a,...)	 ftdm_log(FTDM_LOG_INFO,a , ##__VA_ARGS__ );
__VA_ARGS__       617 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.h #define SS7_WARN(a,...)	 ftdm_log(FTDM_LOG_WARNING,a , ##__VA_ARGS__ );
__VA_ARGS__       618 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.h #define SS7_ERROR(a,...)	ftdm_log(FTDM_LOG_ERROR,a , ##__VA_ARGS__ );
__VA_ARGS__       619 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.h #define SS7_CRITICAL(a,...) ftdm_log(FTDM_LOG_CRIT,a , ##__VA_ARGS__ );
__VA_ARGS__       628 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.h #define SS7_DEVEL_DEBUG(a,...)   ftdm_log(FTDM_LOG_DEBUG,a,##__VA_ARGS__ );
__VA_ARGS__       662 src/include/private/ftdm_core.h 		ftdm_log(level, __VA_ARGS__); \
__VA_ARGS__       666 src/include/private/ftdm_core.h #define ftdm_log_chan_ex(fchan, file, func, line, level, format, ...) ftdm_log(file, func, line, level, "[s%dc%d][%d:%d] " format, fchan->span_id, fchan->chan_id, fchan->physical_span_id, fchan->physical_chan_id, __VA_ARGS__)
__VA_ARGS__       667 src/include/private/ftdm_core.h #define ftdm_log_chan(fchan, level, format, ...) ftdm_log(level, "[s%dc%d][%d:%d] " format, fchan->span_id, fchan->chan_id, fchan->physical_span_id, fchan->physical_chan_id, __VA_ARGS__)
__VA_ARGS__       670 src/include/private/ftdm_core.h #define ftdm_log_chan_throttle(fchan, level, format, ...) ftdm_log_throttle(level, "[s%dc%d][%d:%d] " format, fchan->span_id, fchan->chan_id, fchan->physical_span_id, fchan->physical_chan_id, __VA_ARGS__)
__VA_ARGS__       671 src/include/private/ftdm_core.h #define ftdm_log_chan_msg_throttle(fchan, level, format, ...) ftdm_log_throttle(level, "[s%dc%d][%d:%d] " format, fchan->span_id, fchan->chan_id, fchan->physical_span_id, fchan->physical_chan_id, __VA_ARGS__)
__VA_ARGS__       547 src/isdn/Q921.c 	len = snprintf(buf + off, lef, fmt, ##__VA_ARGS__);	\