Skip to content

Commit

Permalink
chore: Added logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dariusc93 committed Oct 16, 2023
1 parent d97cf4a commit bcbf2f0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions extensions/warp-ipfs/src/store/identity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1009,6 +1009,8 @@ impl IdentityStore {
e
})?;

log::trace!("Image pointed to {identity_profile_picture} for {did} downloaded");

if emit {
store.emit_event(
MultiPassEventKind::IdentityUpdate { did },
Expand Down Expand Up @@ -1064,6 +1066,8 @@ impl IdentityStore {
e
})?;

log::trace!("Image pointed to {identity_profile_banner} for {did} downloaded");

if emit {
store.emit_event(
MultiPassEventKind::IdentityUpdate { did },
Expand Down Expand Up @@ -1150,6 +1154,8 @@ impl IdentityStore {
e
})?;

log::trace!("Image pointed to {picture} for {did} downloaded");

store.emit_event(
MultiPassEventKind::IdentityUpdate { did },
);
Expand Down Expand Up @@ -1181,6 +1187,8 @@ impl IdentityStore {
e
})?;

log::trace!("Image pointed to {banner} for {did} downloaded");

store.emit_event(
MultiPassEventKind::IdentityUpdate { did },
);
Expand Down

0 comments on commit bcbf2f0

Please sign in to comment.