You've already forked AstralRinth
forked from didirus/AstralRinth
* Expose test utils to Labrinth dependents * Feature gate `labrinth::test` * Unify db migrators * Expose `NotificationBuilder::insert_many_deliveries` * Add logging utils to common crate * Remove unused console-subscriber layer * fix CI
75 lines
2.1 KiB
Rust
75 lines
2.1 KiB
Rust
//! Service logging utilities.
|
|
|
|
use std::str::FromStr;
|
|
|
|
use eyre::{Result, eyre};
|
|
use tracing::level_filters::LevelFilter;
|
|
use tracing_ecs::ECSLayerBuilder;
|
|
use tracing_subscriber::{
|
|
EnvFilter, layer::SubscriberExt, util::SubscriberInitExt,
|
|
};
|
|
|
|
use crate::{Context, env_var};
|
|
|
|
/// How this service will output logs to the terminal output.
|
|
///
|
|
/// See [`init`].
|
|
#[derive(Debug, Clone, Default, PartialEq, Eq)]
|
|
enum OutputFormat {
|
|
/// Human-readable format using [`tracing_subscriber::fmt::layer`].
|
|
#[default]
|
|
Human,
|
|
/// Elastic Common Schema JSON output using [`ECSLayerBuilder`].
|
|
Json,
|
|
}
|
|
|
|
impl FromStr for OutputFormat {
|
|
type Err = ();
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
match s {
|
|
"human" => Ok(Self::Human),
|
|
"json" => Ok(Self::Json),
|
|
_ => Err(()),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Key for the environment variable that determines the output format.
|
|
pub const OUTPUT_FORMAT_ENV_VAR: &str = "MODRINTH_OUTPUT_FORMAT";
|
|
|
|
/// Initializes logging for Modrinth services.
|
|
///
|
|
/// This uses [`OUTPUT_FORMAT_ENV_VAR`] to determine the [`OutputFormat`] to
|
|
/// use - see that type for details of each possible format.
|
|
///
|
|
/// # Errors
|
|
///
|
|
/// Errors if logging could not be initialized.
|
|
pub fn init() -> Result<()> {
|
|
let output_format = match env_var(OUTPUT_FORMAT_ENV_VAR) {
|
|
Ok(format) => format
|
|
.parse::<OutputFormat>()
|
|
.map_err(|_| eyre!("invalid output format '{format}'"))?,
|
|
Err(_) => OutputFormat::Human,
|
|
};
|
|
|
|
let env_filter = EnvFilter::builder()
|
|
.with_default_directive(LevelFilter::INFO.into())
|
|
.from_env_lossy();
|
|
|
|
let result = match output_format {
|
|
OutputFormat::Human => tracing_subscriber::registry()
|
|
.with(env_filter)
|
|
.with(tracing_subscriber::fmt::layer())
|
|
.try_init(),
|
|
OutputFormat::Json => tracing_subscriber::registry()
|
|
.with(env_filter)
|
|
.with(ECSLayerBuilder::default().stdout())
|
|
.try_init(),
|
|
};
|
|
result.wrap_err("failed to initialize tracing registry")?;
|
|
|
|
Ok(())
|
|
}
|