Lines Matching refs:format
41 void avahi_log_ap(AvahiLogLevel level, const char*format, va_list ap) {
44 vsnprintf(txt, sizeof(txt), format, ap);
56 void avahi_log(AvahiLogLevel level, const char*format, ...) {
58 va_start(ap, format);
59 avahi_log_ap(level, format, ap);
63 void avahi_log_error(const char*format, ...) {
65 va_start(ap, format);
66 avahi_log_ap(AVAHI_LOG_ERROR, format, ap);
70 void avahi_log_warn(const char*format, ...) {
72 va_start(ap, format);
73 avahi_log_ap(AVAHI_LOG_WARN, format, ap);
77 void avahi_log_notice(const char*format, ...) {
79 va_start(ap, format);
80 avahi_log_ap(AVAHI_LOG_NOTICE, format, ap);
84 void avahi_log_info(const char*format, ...) {
86 va_start(ap, format);
87 avahi_log_ap(AVAHI_LOG_INFO, format, ap);
91 void avahi_log_debug(const char*format, ...) {
93 va_start(ap, format);
94 avahi_log_ap(AVAHI_LOG_DEBUG, format, ap);