Files @ 63f3efc9c886
Branch filter:

Location: CSY/reowolf/src/macros.rs

63f3efc9c886 329 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
Christopher Esterhuyse
more logging, tests and comments. re-implemented checking for consistency for natives (eagerly) and proto components (after run_to_blocker). deduplicated each connector's failure requests toward the sink
macro_rules! endptlog {
    ($logger:expr, $($arg:tt)*) => {{
        // let w = $logger.line_writer();
        //    let _ = write!(w, "[ENDPT]");
        //    let _ = writeln!(w, $($arg)*);
    }};
}
macro_rules! log {
    ($logger:expr, $($arg:tt)*) => {{
        let _ = writeln!($logger.line_writer(), $($arg)*);
    }};
}