From 71f66426c5c0ff9d52b1baa0b6bfe34786cfdcfe Mon Sep 17 00:00:00 2001 From: hut Date: Wed, 20 Mar 2024 06:02:06 +0100 Subject: [PATCH] less verbosity --- src/world.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/world.rs b/src/world.rs index f481ce2..6ed7126 100644 --- a/src/world.rs +++ b/src/world.rs @@ -386,7 +386,7 @@ impl ParserState { } fn spawn_chatbranch(&self, commands: &mut Commands) { if self.stores_item { - info!("{:#?}", self.as_chatbranch()); + debug!("{:#?}", self.as_chatbranch()); commands.spawn(self.as_chatbranch()); } } @@ -407,7 +407,7 @@ pub fn load_defs( let caps = re1.captures(line); if caps.is_none() { if line.trim() != "" { - info!("Syntax Error in definitions line {}: `{}`", line_nr, line); + warn!("Syntax Error in definitions line {}: `{}`", line_nr, line); } continue; }