Skip to content

Commit

Permalink
fenk u klibbi!
Browse files Browse the repository at this point in the history
Signed-off-by: Kim Altintop <[email protected]>
  • Loading branch information
kim committed Aug 19, 2021
1 parent c4e9212 commit d5f4db8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions seed/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -456,12 +456,11 @@ impl Node {
};

match &result {
Ok(was_updated) => {
if was_updated {
tracing::info!("Successfully tracked project {} from peer {}", urn, peer_id);
} else {
tracing::debug!("Project {} from peer {} already tracked", urn, peer_id);
}
Ok(true) => {
tracing::info!("Successfully tracked project {} from peer {}", urn, peer_id);
},
Ok(false) => {
tracing::debug!("Project {} from peer {} already tracked", urn, peer_id);
},
Err(err) => {
tracing::info!(
Expand Down

0 comments on commit d5f4db8

Please sign in to comment.