Skip to content

Commit

Permalink
lib: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
astro committed Sep 3, 2023
1 parent b361297 commit f719171
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,7 @@ impl RecordState {
let addr = self.addr.unwrap();
if let Some(name) = &self.name.clone() {
if let Err(e) = self.update_addr(name, &addr).await {
error!(
"Error updating {} to {}: {}",
name,
self.addr.unwrap(),
e
);
error!("Error updating {} to {}: {}", name, self.addr.unwrap(), e);
// try again later
self.dirty = true;
return;
Expand Down

0 comments on commit f719171

Please sign in to comment.