Skip to content

Commit

Permalink
fix: remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
nelson137 committed Apr 3, 2024
1 parent f4315f3 commit b42bfdb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion framework_crates/bones_framework/src/render/sprite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ impl AssetLoader for ImageAssetLoader {
_ctx: AssetLoadCtx,
bytes: &[u8],
) -> futures::future::Boxed<anyhow::Result<SchemaBox>> {
tracing::info!(loc = %_ctx.loc.path.display(), size = bytes.len(), "load asset");
let bytes = bytes.to_vec();
Box::pin(async move {
Ok(SchemaBox::new(Image::Data(image::load_from_memory(
Expand Down

0 comments on commit b42bfdb

Please sign in to comment.