change debug function

This commit is contained in:
Mark 2023-11-30 11:44:20 +01:00
parent 782460e472
commit 9c0d55788f

View File

@ -51,7 +51,8 @@ impl Config {
info_check: Arc::new(Mutex::new(CheckInfo::neverused())), info_check: Arc::new(Mutex::new(CheckInfo::neverused())),
out: Arc::new(|_a, _i| Ok(Type::empty_tuple())), out: Arc::new(|_a, _i| Ok(Type::empty_tuple())),
run: Arc::new(|a, _i| { run: Arc::new(|a, _i| {
eprintln!("{:#?}", a.get()); let a = a.get();
eprintln!("{} :: {}", a.as_type(), a);
Data::empty_tuple() Data::empty_tuple()
}), }),
}), }),