Skip to content

Commit

Permalink
shorter log
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jan 14, 2023
1 parent 70e7b56 commit 9b1ca66
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 @@ -123,11 +123,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} (re -> {re})");
v = to;
continue;
}
format!("redirect to '{re}' didn't help")
format!("re to '{re}' didn't help")
} else {
redirect.err().unwrap().to_string()
};
Expand Down

0 comments on commit 9b1ca66

Please sign in to comment.