Fix misleading debug string

This commit is contained in:
Roey Darwish Dror
2019-08-15 09:23:22 +03:00
parent 84ff5ecc43
commit d552360ab6

View File

@@ -31,7 +31,7 @@ where
F: Fn() -> Result<(), Error>,
M: Into<Cow<'a, str>> + Debug,
{
debug!("Executing {:?}", key);
debug!("Step {:?}", key);
loop {
match func() {