#
#  Outputs the contents of the control list in debugging (-X) mode
#
debug_control {
	if (%pairs.debug('control')) {
		noop
	}
}

#
#  Outputs the contents of the request list in debugging (-X) mode
#
debug_request {
	if (%pairs.debug('request')) {
		noop
	}
}

#
#  Outputs the contents of the reply list in debugging (-X) mode
#
debug_reply {
	if (%pairs.debug('reply')) {
		noop
	}
}

#
#  Outputs the contents of the session state list in debugging (-X) mode
#
debug_session_state {
	if (%pairs.debug('session-state')) {
		noop
	}
}

#
#  Outputs the contents of the main lists in debugging (-X) mode
#
debug_all {
	debug_control
	debug_request
	debug_reply
	debug_session_state
}
