server: migrate all use of log to tracing

This commit is contained in:
2025-04-23 15:25:11 -07:00
parent c7c47e4a73
commit f11f0b4d23
6 changed files with 4 additions and 9 deletions

View File

@@ -9,11 +9,10 @@ use async_graphql::{
use cacher::FilesystemCacher;
use futures::stream;
use letterbox_notmuch::Notmuch;
use log::info;
use serde::{Deserialize, Serialize};
use sqlx::postgres::PgPool;
use tokio::join;
use tracing::instrument;
use tracing::{info, instrument};
#[cfg(feature = "tantivy")]
use crate::tantivy::TantivyConnection;