Skip to content

Commit

Permalink
Fix unused log::debug
Browse files Browse the repository at this point in the history
  • Loading branch information
palfrey committed Jul 31, 2022
1 parent b0a6960 commit 3d9607c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion serial_test/src/code_lock.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::rwlock::{Locks, MutexGuardWrapper};
use lazy_static::lazy_static;
#[cfg(feature = "logging")]
#[cfg(all(feature = "logging", feature = "timeout"))]
use log::debug;
use parking_lot::RwLock;
#[cfg(feature = "timeout")]
Expand Down
1 change: 1 addition & 0 deletions serial_test/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
#![deny(unused_variables)]
#![deny(missing_docs)]
#![deny(unused_imports)]

//! # serial_test
//! `serial_test` allows for the creation of serialised Rust tests using the [serial](macro@serial) attribute
Expand Down

0 comments on commit 3d9607c

Please sign in to comment.