Skip to content

Commit 050509b

Browse files
committed
fix: Replace URL in log with correct variable
1 parent 2d29f3a commit 050509b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/game/metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@ pub async fn download_libraries(
273273
}
274274
}
275275

276-
tracing::info!("fetching #2 library '{}' from '{}'", &lib.name, &artifact.url);
277276
let url = [lib.url.as_deref().unwrap_or("https://libraries.minecraft.net/"), &artifact_path].concat();
277+
tracing::info!("fetching #2 library '{}' from '{}'", &lib.name, &url);
278278
let bytes = fetch(&url, None, &st.fetch_semaphore).await?;
279279
write(&path, &bytes, &st.io_semaphore).await?;
280280
tracing::trace!("fetched library {} to path {:?}", &lib.name, &path);

0 commit comments

Comments
 (0)