25 lines
557 B
Rust
25 lines
557 B
Rust
// SPDX-FileCopyrightText: 2024 Aravinth Manivannan <realaravinth@batsense.net>
|
|
//
|
|
// 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};
|