diff --git a/server/src/controller/account_controller.rs b/server/src/controller/account_controller.rs index 622ac87..d2493c1 100644 --- a/server/src/controller/account_controller.rs +++ b/server/src/controller/account_controller.rs @@ -31,7 +31,6 @@ pub async fn refresh_account_token( context: Context, JsonBody(refresh_token): JsonBody, ) -> ResResult { - tracing::debug!("刷新token, {:?}", context); service::account_service::refresh_token(context, refresh_token.token).await }