// SPDX-FileCopyrightText: 2024 Aravinth Manivannan // // SPDX-License-Identifier: AGPL-3.0-or-later #[allow(unused_imports)] #[cfg(test)] pub(crate) use println as info; #[allow(unused_imports)] #[cfg(test)] pub(crate) use println as error; #[allow(unused_imports)] #[cfg(test)] pub(crate) use println as trace; #[allow(unused_imports)] #[cfg(test)] pub(crate) use println as debug; #[allow(unused_imports)] #[cfg(test)] pub(crate) use println as warn; #[cfg(not(test))] pub use tracing::{debug, error, info, trace, warn};