Standardize on 'use log::*' for easy access to all log level macros

This commit is contained in:
Michael Vines
2019-02-27 20:57:01 -08:00
committed by Grimes
parent 855f1823a4
commit 0dc5af62ff
12 changed files with 13 additions and 15 deletions

View File

@ -1,5 +1,5 @@
//! The `netutil` module assists with networking
use log::trace;
use log::*;
use nix::sys::socket::setsockopt;
use nix::sys::socket::sockopt::{ReuseAddr, ReusePort};
use pnet_datalink as datalink;