summaryrefslogtreecommitdiff
path: root/ecs/src/query.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2025-02-02 21:40:59 +0100
committerHampusM <hampus@hampusmat.com>2025-02-02 21:40:59 +0100
commit0d75299fe6b04e0866a44ad484b42703c6a9aa26 (patch)
tree34c533e154df90f19c83848e6982f5202c4a6239 /ecs/src/query.rs
parent9b07ebe0efbda2a62ccc25215fe6bf8939bcf272 (diff)
chore(ecs): change level of certain logs to trace
Diffstat (limited to 'ecs/src/query.rs')
-rw-r--r--ecs/src/query.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ecs/src/query.rs b/ecs/src/query.rs
index bc9308a..ca9345c 100644
--- a/ecs/src/query.rs
+++ b/ecs/src/query.rs
@@ -36,7 +36,7 @@ where
&'query self,
) -> ComponentIter<'query, 'world, Comps, FlexibleQueryIter<'query>>
{
- tracing::debug!("Searching for {}", std::any::type_name::<Comps>());
+ tracing::trace!("Searching for {}", std::any::type_name::<Comps>());
ComponentIter {
world: self.world,
@@ -52,7 +52,7 @@ where
&'query self,
) -> ComponentAndEuidIter<'query, 'world, Comps, FlexibleQueryIter<'query>>
{
- tracing::debug!("Searching for {}", std::any::type_name::<Comps>());
+ tracing::trace!("Searching for {}", std::any::type_name::<Comps>());
ComponentAndEuidIter {
world: self.world,
@@ -74,7 +74,7 @@ where
where
OutIter: Iterator<Item = EntityHandle<'query>>,
{
- tracing::debug!("Searching for {}", std::any::type_name::<Comps>());
+ tracing::trace!("Searching for {}", std::any::type_name::<Comps>());
ComponentIter {
world: self.world,