replace additional use tracing::

add log:: to disallowed-macros

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-11-14 04:31:29 +00:00
parent e228dec4f2
commit 4ec5d1e28e
7 changed files with 19 additions and 9 deletions

View file

@ -5,9 +5,8 @@ use std::{
use axum::Router;
use axum_server::{bind, Handle as ServerHandle};
use conduit::{debug_info, Result, Server};
use conduit::{debug_info, info, Result, Server};
use tokio::task::JoinSet;
use tracing::info;
pub(super) async fn serve(
server: &Arc<Server>, app: Router, handle: ServerHandle, addrs: Vec<SocketAddr>,