diff options
author | HampusM <hampus@hampusmat.com> | 2025-02-02 21:35:18 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-02-02 21:35:18 +0100 |
commit | 9b07ebe0efbda2a62ccc25215fe6bf8939bcf272 (patch) | |
tree | 199ffa49009b0420b677c00f3f17dc8df98a8571 /ecs/src/query.rs | |
parent | d313b72970b25878f34d39791f08d5e0d645d9d0 (diff) |
chore(ecs): remove 'debug' crate feature
Diffstat (limited to 'ecs/src/query.rs')
-rw-r--r-- | ecs/src/query.rs | 3 |
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 { |