summaryrefslogtreecommitdiff
path: root/ecs/src/query.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ecs/src/query.rs')
-rw-r--r--ecs/src/query.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/ecs/src/query.rs b/ecs/src/query.rs
index 3ee7e5b..bc9308a 100644
--- a/ecs/src/query.rs
+++ b/ecs/src/query.rs
@@ -36,7 +36,6 @@ where
&'query self,
) -> ComponentIter<'query, 'world, Comps, FlexibleQueryIter<'query>>
{
- #[cfg(feature = "debug")]
tracing::debug!("Searching for {}", std::any::type_name::<Comps>());
ComponentIter {
@@ -53,7 +52,6 @@ where
&'query self,
) -> ComponentAndEuidIter<'query, 'world, Comps, FlexibleQueryIter<'query>>
{
- #[cfg(feature = "debug")]
tracing::debug!("Searching for {}", std::any::type_name::<Comps>());
ComponentAndEuidIter {
@@ -76,7 +74,6 @@ where
where
OutIter: Iterator<Item = EntityHandle<'query>>,
{
- #[cfg(feature = "debug")]
tracing::debug!("Searching for {}", std::any::type_name::<Comps>());
ComponentIter {