hc_sleuth 0.4.4

Tool for diagnosing problems with Holochain
Documentation
1
2
3
4
5
6
7
8
9
use aitia::{simple_report, Fact};

use super::*;

pub fn report(event: Event, ctx: &Context) {
    if let Some(report) = simple_report(&event.traverse(ctx)) {
        println!("hc_sleuth simple report:\n{report}");
    }
}