Skip to content

Commit

Permalink
make warn log debug instead
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobhellermann committed Apr 15, 2021
1 parent 68290fa commit cf04c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_gltf/src/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ async fn load_gltf<'a, 'b>(
} else {
let len = mesh.count_vertices();
let uvs = vec![[0.0, 0.0]; len];
bevy_log::warn!("missing `TEXCOORD_0` vertex attribute, loading zeroed out UVs");
bevy_log::debug!("missing `TEXCOORD_0` vertex attribute, loading zeroed out UVs");
mesh.set_attribute(Mesh::ATTRIBUTE_UV_0, uvs);
}

Expand Down

0 comments on commit cf04c24

Please sign in to comment.