wasmer_cli/commands/journal/
inspect.rsuse std::path::PathBuf;
use clap::Parser;
use wasmer_wasix::journal::{copy_journal, LogFileJournal, PrintingJournal};
use crate::commands::CliCommand;
#[derive(Debug, Parser)]
pub struct CmdJournalInspect {
#[clap(index = 1)]
journal_path: PathBuf,
}
impl CliCommand for CmdJournalInspect {
type Output = ();
fn run(self) -> Result<(), anyhow::Error> {
let journal = LogFileJournal::new(self.journal_path)?;
let printer = PrintingJournal::default();
copy_journal(&journal, &printer)?;
Ok(())
}
}