Keep a couple more fields out of logs
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
asonix 2022-11-01 16:50:23 -05:00
parent e466a41309
commit 32f5a0670f
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -279,7 +279,7 @@ checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
[[package]]
name = "ap-relay"
version = "0.3.26"
version = "0.3.27"
dependencies = [
"activitystreams",
"activitystreams-ext",

View file

@ -1,7 +1,7 @@
[package]
name = "ap-relay"
description = "A simple activitypub relay"
version = "0.3.26"
version = "0.3.27"
authors = ["asonix <asonix@asonix.dog>"]
license = "AGPL-3.0"
readme = "README.md"

View file

@ -17,7 +17,7 @@ use actix_web::{web, HttpResponse};
use http_signature_normalization_actix::prelude::{DigestVerified, SignatureVerified};
use tracing::error;
#[tracing::instrument(name = "Inbox", skip(config, state))]
#[tracing::instrument(name = "Inbox", skip(actors, client, jobs, config, state))]
pub(crate) async fn route(
state: web::Data<State>,
actors: web::Data<ActorCache>,

View file

@ -5,7 +5,7 @@ use actix_web::{
};
use uuid::Uuid;
#[tracing::instrument(name = "Media")]
#[tracing::instrument(name = "Media", skip(media, requests))]
pub(crate) async fn route(
media: web::Data<MediaCache>,
requests: web::Data<Requests>,