From 5dc9f13a780411199cdf2809dc1dee5139714fb9 Mon Sep 17 00:00:00 2001 From: Lionel Sambuc Date: Mon, 27 Jan 2020 13:27:26 +0100 Subject: [PATCH] Change timing information level to debug --- src/shared_state.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/shared_state.rs b/src/shared_state.rs index a175e9d..dcd646b 100644 --- a/src/shared_state.rs +++ b/src/shared_state.rs @@ -53,7 +53,7 @@ impl SharedState { // Parse Input { - info_time!("Parsing"); + debug_time!("Parsing"); parse = parser.parse(filter); } @@ -68,7 +68,7 @@ impl SharedState { // Check type coherence & validate tree { - info_time!("Type check"); + debug_time!("Type check"); validation = tree.validate(); } if validation.is_err() { @@ -112,7 +112,7 @@ impl SharedState { // Parse Input { - info_time!("Parsing"); + debug_time!("Parsing"); parse = parser.parse(query); } match parse { @@ -127,7 +127,7 @@ impl SharedState { // Check type coherence & validate tree { - info_time!("Type check"); + debug_time!("Type check"); validation = tree.validate(); } if validation.is_err() {