diff options
author | Tom Gundersen <teg@jklm.no> | 2015-08-12 18:18:31 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-08-17 07:18:30 +0200 |
commit | 6b34a6c995493dc6efaa245ff021476b70662f9a (patch) | |
tree | 15ec0112f94c67ff1999c38c29fea2af536fba14 /src/resolve/resolved-dns-transaction.c | |
parent | 17018c3cc7ba3dcb4e6aeb8a77203b08fd09f726 (diff) |
resolved: cache - add more detailed cache debug logging
Diffstat (limited to 'src/resolve/resolved-dns-transaction.c')
-rw-r--r-- | src/resolve/resolved-dns-transaction.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/resolve/resolved-dns-transaction.c b/src/resolve/resolved-dns-transaction.c index 53779f3372..2d9d1a47ee 100644 --- a/src/resolve/resolved-dns-transaction.c +++ b/src/resolve/resolved-dns-transaction.c @@ -624,7 +624,6 @@ int dns_transaction_go(DnsTransaction *t) { if (r < 0) return r; if (r > 0) { - log_debug("Cache hit!"); if (t->cached_rcode == DNS_RCODE_SUCCESS) dns_transaction_complete(t, DNS_TRANSACTION_SUCCESS); else @@ -661,8 +660,6 @@ int dns_transaction_go(DnsTransaction *t) { return 0; } - log_debug("Cache miss!"); - /* Otherwise, we need to ask the network */ r = dns_transaction_make_packet(t); if (r == -EDOM) { |