replace additional use tracing::

add log:: to disallowed-macros

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-11-14 04:31:29 +00:00
parent e228dec4f2
commit 4ec5d1e28e
7 changed files with 19 additions and 9 deletions

View file

@ -1,3 +1,5 @@
#![allow(clippy::disallowed_macros)]
use std::{any::Any, panic};
// Export debug proc_macros

View file

@ -1,3 +1,5 @@
#![allow(clippy::disallowed_macros)]
pub mod capture;
pub mod color;
pub mod fmt;

View file

@ -1,6 +1,4 @@
use tracing::debug;
use crate::Result;
use crate::{debug, Result};
/// This is needed for opening lots of file descriptors, which tends to
/// happen more often when using RocksDB and making lots of federation