From 885ad01780f86f3ec6e123c82dd30e62ba8c529d Mon Sep 17 00:00:00 2001 From: Amaury <1293565+amaury1729@users.noreply.github.com> Date: Wed, 11 Oct 2023 20:41:41 +0200 Subject: [PATCH] chore(backend): Improve concurrency message --- backend/src/main.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/backend/src/main.rs b/backend/src/main.rs index 43fa8fb9e..a1858fceb 100644 --- a/backend/src/main.rs +++ b/backend/src/main.rs @@ -36,7 +36,6 @@ async fn main() -> Result<(), Box> { let is_bulk_enabled = env::var("RCH_ENABLE_BULK").unwrap_or_else(|_| "0".into()) == "1"; if is_bulk_enabled { - log::info!(target: LOG_TARGET, "Bulk endpoints enabled."); let pool = create_db().await?; let _registry = create_job_registry(&pool).await?; let routes = create_routes(Some(pool)); @@ -104,6 +103,11 @@ async fn create_job_registry(pool: &Pool) -> Result