From b619449b134658ab3f83bd060f68a08a221a7ce2 Mon Sep 17 00:00:00 2001 From: lisk77 Date: Mon, 5 May 2025 14:05:21 +0200 Subject: [PATCH] fix: removed debug print in `scene.rs` --- crates/comet_ecs/src/scene.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/comet_ecs/src/scene.rs b/crates/comet_ecs/src/scene.rs index 45eafdc..4094b59 100644 --- a/crates/comet_ecs/src/scene.rs +++ b/crates/comet_ecs/src/scene.rs @@ -196,7 +196,6 @@ impl Scene { if self.get_component_set(entity_id) != ComponentSet::from_ids(vec![C::type_id()]) { self.add_entity_to_archetype(entity_id as u32, self.get_component_set(entity_id)); } - debug!("{:?}", self.archetypes); info!("Added component {} to entity {}!", C::type_name(), entity_id); }