From c8eb914d8a784dd492e2637ff608ee76fd1fd471 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Tue, 28 Apr 2020 14:09:43 -0400 Subject: [PATCH] Remove noisy dns log --- rootfs/etc/nginx/lua/util/dns.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/rootfs/etc/nginx/lua/util/dns.lua b/rootfs/etc/nginx/lua/util/dns.lua index 4c33228b9..e68ed1f7d 100644 --- a/rootfs/etc/nginx/lua/util/dns.lua +++ b/rootfs/etc/nginx/lua/util/dns.lua @@ -53,8 +53,6 @@ local function a_records_and_min_ttl(answers) end local function resolve_host_for_qtype(r, host, qtype) - ngx_log(ngx_INFO, string_format("resolving %s with qtype %s", host, qtype)) - local answers, err = r:query(host, { qtype = qtype }, {}) if not answers then return nil, -1, err