systemd-journal-sdk-host 0.7.8

Optional host identity and monotonic timestamp helpers for the systemd journal SDK
Documentation
1
2
3
4
5
6
7
8
9
use crate::{LoadOptions, LocalJournalProvider};
use std::io;

pub(crate) fn load(_options: LoadOptions) -> io::Result<LocalJournalProvider> {
    Err(io::Error::new(
        io::ErrorKind::Unsupported,
        "journal host helper is not supported on this platform",
    ))
}