Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jan 13, 2023
1 parent fdf7dcb commit 3b03ccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/find.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ impl Sodg {
let redirect = relay.re(v, &head, &tail);
let failure = if let Ok(re) = redirect {
if let Ok(to) = self.find(v, re.as_str(), relay) {
trace!("#find: ν{v}.{k} -> ν{to} (redirect to .{re})");
trace!("#find: ν{v}.{k} -> ν{to} (redirect to '{re}')");
v = to;
continue;
}
format!("redirect to .{re} didn't help")
format!("redirect to '{re}' didn't help")
} else {
redirect.err().unwrap().to_string()
};
Expand Down

0 comments on commit 3b03ccd

Please sign in to comment.