Interpret the nix logs.

This commit is contained in:
Tom Alexander
2026-02-17 22:49:42 -05:00
parent d65c54d997
commit f797a19175
12 changed files with 756 additions and 25 deletions

View File

@@ -6,6 +6,7 @@ use self::cli::parameters::Cli;
use self::cli::parameters::Commands;
use self::command::build::run_build;
use self::command::daemon::start_daemon;
use self::command::feed_logs::feed_logs;
use self::error::CustomError;
use self::init_tracing::init_telemetry;
use self::init_tracing::shutdown_telemetry;
@@ -36,6 +37,9 @@ async fn main_body() -> Result<ExitCode> {
Commands::Daemon(args) => {
start_daemon(args).await?;
}
Commands::FeedLog(args) => {
feed_logs(args).await?;
}
};
shutdown_telemetry().expect("Telemetry should shutdown successfully.");
Ok(ExitCode::SUCCESS)