Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
heartwood crates radicle-systemd src journal.rs
use systemd_journal_logger::{JournalLog, connected_to_journal};

/// If the current process is directly connected to the systemd journal,
/// return a logger that will write to it.
pub fn logger<K, V, I>(identifier: String, extra_fields: I) -> std::io::Result<Box<dyn log::Log>>
where
    I: IntoIterator<Item = (K, V)>,
    K: AsRef<str>,
    V: AsRef<[u8]>,
{
    Ok(Box::new(
        JournalLog::new()?
            .with_syslog_identifier(identifier)
            .with_extra_fields(extra_fields),
    ))
}

pub fn connected() -> bool {
    connected_to_journal()
}