Use explicit imports for log macros
This commit is contained in:
parent
9c694a450a
commit
34ee9de0ec
|
@ -98,9 +98,6 @@
|
||||||
//! Domain: eppdev.net, Available: 1
|
//! Domain: eppdev.net, Available: 1
|
||||||
//! ```
|
//! ```
|
||||||
|
|
||||||
#[macro_use]
|
|
||||||
extern crate log;
|
|
||||||
|
|
||||||
pub mod client;
|
pub mod client;
|
||||||
pub mod common;
|
pub mod common;
|
||||||
pub mod config;
|
pub mod config;
|
||||||
|
|
|
@ -7,6 +7,7 @@ use std::sync::Arc;
|
||||||
use std::{error::Error, io as stdio, net::ToSocketAddrs};
|
use std::{error::Error, io as stdio, net::ToSocketAddrs};
|
||||||
use std::{io, str, u32};
|
use std::{io, str, u32};
|
||||||
|
|
||||||
|
use log::{debug, info, warn};
|
||||||
use rustls::{Certificate, PrivateKey};
|
use rustls::{Certificate, PrivateKey};
|
||||||
use rustls::{OwnedTrustAnchor, RootCertStore};
|
use rustls::{OwnedTrustAnchor, RootCertStore};
|
||||||
use rustls_pemfile;
|
use rustls_pemfile;
|
||||||
|
|
Loading…
Reference in New Issue