Make util::logger::macro_logger pub(crate) not pub.

There is no reason for it to be pub, its a largely-internal
implementation detail of how we format our own objects for logging.
This commit is contained in:
Matt Corallo 2021-03-07 16:24:05 -05:00
parent 8b4ea56966
commit 9b55c0349a

View file

@ -28,7 +28,7 @@ pub(crate) mod ser_macros;
/// Logging macro utilities.
#[macro_use]
pub mod macro_logger;
pub(crate) mod macro_logger;
// These have to come after macro_logger to build
pub mod logger;