1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
);