Skip unneeded logging with Weasyl submissions.

This commit is contained in:
Syfaro 2021-08-21 22:19:01 -04:00
parent 4c0fb5ac2e
commit 9920fff69c

View File

@ -120,7 +120,7 @@ async fn load_submission(
Ok((res, body))
}
#[tracing::instrument(skip(pool, client, faktory, body, sub), fields(id = sub.id))]
#[tracing::instrument(skip(pool, client, faktory, body, sub, download_folder), fields(id = sub.id))]
async fn process_submission(
pool: &sqlx::Pool<sqlx::Postgres>,
client: &reqwest::Client,