mirror of
https://git.asonix.dog/asonix/relay.git
synced 2024-11-22 01:21:06 +00:00
Keep a couple more fields out of logs
This commit is contained in:
parent
e466a41309
commit
32f5a0670f
4 changed files with 4 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -279,7 +279,7 @@ checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
|
|||
|
||||
[[package]]
|
||||
name = "ap-relay"
|
||||
version = "0.3.26"
|
||||
version = "0.3.27"
|
||||
dependencies = [
|
||||
"activitystreams",
|
||||
"activitystreams-ext",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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>,
|
||||
|
|
|
@ -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>,
|
||||
|
|
Loading…
Reference in a new issue