Skip to content

Commit

Permalink
fix logging import
Browse files Browse the repository at this point in the history
  • Loading branch information
keepsimple1 committed May 17, 2024
1 parent 900c74d commit a739b22
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dns_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ use crate::dns_parser::{
current_time_millis, split_sub_domain, DnsAddress, DnsPointer, DnsRecordBox, DnsSrv, TYPE_A,
TYPE_AAAA, TYPE_NSEC, TYPE_PTR, TYPE_SRV, TYPE_TXT,
};
use log::debug;
#[cfg(feature = "logging")]
use crate::log::debug;
use std::{
collections::{HashMap, HashSet},
net::IpAddr,
Expand Down

0 comments on commit a739b22

Please sign in to comment.