1 /* $NetBSD: log.c,v 1.3 2020/05/24 19:46:16 christos Exp $ */ 2 3 /* 4 * Copyright (C) 2009-2015 Red Hat ; see COPYRIGHT for license 5 */ 6 7 #include "log.h" 8 9 #include <isc/util.h> 10 11 #include <dns/log.h> 12 13 void 14 log_write(int level, const char *format, ...) { 15 va_list args; 16 17 va_start(args, format); 18 isc_log_vwrite(dns_lctx, DNS_LOGCATEGORY_DATABASE, DNS_LOGMODULE_DYNDB, 19 level, format, args); 20 va_end(args); 21 } 22