1
2
3
4
5
6
7
8
9
10
11
12
// Copyright © 2023 Mini Functions library. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Application logging functionality
//!
//! Provides access to logging functions and types.

/// Re-exported main [`rlg`] module from rlg for application logging.
pub use rlg::*;

/// Re-exported [`rlg_macros`] module from rlg.
pub use rlg::macros as rlg_macros;