From 738dfee295829daa73114f3b561b041778b86ddb Mon Sep 17 00:00:00 2001 From: Jannis Pohlmann Date: Mon, 13 Nov 2023 16:53:27 +0100 Subject: [PATCH] fix: use tracing crate for request handler logs --- common/src/indexer_service/http/request_handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/indexer_service/http/request_handler.rs b/common/src/indexer_service/http/request_handler.rs index 2cf027d12..b6e1e4cec 100644 --- a/common/src/indexer_service/http/request_handler.rs +++ b/common/src/indexer_service/http/request_handler.rs @@ -7,9 +7,9 @@ use axum::{ response::IntoResponse, TypedHeader, }; -use log::info; use reqwest::StatusCode; use toolshed::thegraph::DeploymentId; +use tracing::info; use crate::{indexer_service::http::IsAttestable, prelude::AttestationSigner};