feat: add tracing throughout, HTTP TraceLayer, detailed error logs

This commit is contained in:
2026-07-11 21:58:58 +02:00
parent e89cf48b34
commit 2b702d88e4
11 changed files with 60 additions and 13 deletions

View File

@@ -4,5 +4,6 @@ use super::commands::LogoutCommand;
use super::deps::LogoutDeps;
pub async fn execute(deps: &LogoutDeps, cmd: LogoutCommand) -> Result<(), DomainError> {
tracing::debug!("user logged out");
deps.refresh_repo.revoke(&cmd.refresh_token).await
}