systemd-journal-logger

Crates.iosystemd-journal-logger
lib.rssystemd-journal-logger
version2.1.1
sourcesrc
created_at2021-05-28 19:41:39.453618
updated_at2023-11-15 18:37:52.591877
descriptionSystemd journal logger for the log facade.
homepage
repositoryhttps://github.com/swsnr/systemd-journal-logger.rs
max_upload_size
id403297
size81,884
Sebastian Wiesner (swsnr)

documentation

https://docs.rs/systemd-journal-logger

README

systemd-journal-logger

A pure Rust log logger for the systemd journal.

Usage

$ cargo add systemd-journal-logger

Then initialize the logger at the start of main:

use log::{info, warn, error, LevelFilter};
use systemd_journal_logger::JournalLog;

JournalLog::new().unwrap().install().unwrap();
log::set_max_level(LevelFilter::Info);

info!("hello log");
warn!("warning");
error!("oops");

You can also add additional fields to every log message, such as the version of your executable:

use log::{info, warn, error, LevelFilter};
use systemd_journal_logger::JournalLog;

JournalLog::new()
    .unwrap()
    .with_extra_fields(vec![("VERSION", env!("CARGO_PKG_VERSION"))])
    .with_syslog_identifier("foo".to_string())
    .install().unwrap();
log::set_max_level(LevelFilter::Info);

info!("this message has an extra VERSION field in the journal");

These extra fields appear in the output of journalctl --output=verbose or in any of the JSON output formats of journalctl.

See systemd_service.rs for a simple example of logging in a systemd service which automatically falls back to a different logger if not started through systemd.

Related projects

Both loggers use mostly the same fields and priorities as this implementation.

Minimum Supported Rust Version

The MSRV used in this repo is best effort only and may be bumped at any time, even in patch releases.

License

Either MIT or Apache 2.0, at your option.

Commit count: 108

cargo fmt