From 0aa94d9c87dc4fe3e23709d087c95462d4de392d Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Sun, 25 Jun 2023 14:32:36 -0700 Subject: [PATCH] don't escape newlines --- web3_proxy/src/stats/influxdb_queries.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web3_proxy/src/stats/influxdb_queries.rs b/web3_proxy/src/stats/influxdb_queries.rs index e1f432ee..78c4080c 100644 --- a/web3_proxy/src/stats/influxdb_queries.rs +++ b/web3_proxy/src/stats/influxdb_queries.rs @@ -315,9 +315,10 @@ pub async fn query_user_stats<'a>( )); } - debug!("Raw query to db is: {:#?}", query); + // TODO: lower log level + debug!("Raw query to db is: {:#}", query); let query = Query::new(query.to_string()); - trace!("Query to db is: {:?}", query); + trace!("Query to db is: {:#?}", query); // Make the query and collect all data let raw_influx_responses: Vec = influxdb_client