use crate::log_id::LogId;
use self::{event_entry::LogEventEntry, intermediary_event::IntermediaryLogEvent};
pub mod event_entry;
pub mod intermediary_event;
evident::create_static_publisher!(
pub LOGGER,
LogId,
LogEventEntry,
IntermediaryLogEvent,
CAPTURE_CHANNEL_BOUND = 1000,
SUBSCRIPTION_CHANNEL_BOUND = 500,
non_blocking = true
);