Skip to content

Commit

Permalink
Update crates/ark-metadata/src/utils.rs
Browse files Browse the repository at this point in the history
Co-authored-by: glihm <[email protected]>
  • Loading branch information
remiroyc and glihm authored Oct 23, 2023
1 parent a2cde40 commit efbbdc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ark-metadata/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub async fn get_token_metadata(
MetadataType::Ipfs(uri) => {
let ipfs_hash = uri.trim_start_matches("ipfs://");
let complete_uri = format!("{}{}", ipfs_gateway_uri, ipfs_hash);
info!("Fetching metadata from IPFS: {}", complete_uri.as_str());
trace!("Fetching metadata from IPFS: {}", complete_uri.as_str());
fetch_metadata(complete_uri.as_str(), client, request_timeout_duration).await?
}
MetadataType::Http(uri) => {
Expand Down

0 comments on commit efbbdc1

Please sign in to comment.