diff --git a/.clippy.toml b/.clippy.toml index 432a7cbe179a7..4d53765d78fd6 100644 --- a/.clippy.toml +++ b/.clippy.toml @@ -1,5 +1,10 @@ too-many-arguments-threshold = 20 disallowed-methods = [ + # we use tracing with the log feature instead of the log crate. + { path = "log::info", reason = "use tracing::info instead" }, + { path = "log::debug", reason = "use tracing::debug instead" }, + { path = "log::error", reason = "use tracing::error instead" }, + { path = "log::warn", reason = "use tracing::warn instead" }, # unbounded channels are for expert use only { path = "tokio::sync::mpsc::unbounded_channel", reason = "use a bounded channel instead" }, { path = "futures::channel::mpsc::unbounded", reason = "use a bounded channel instead" },