From d2d9aeff25c0ed2d3a4f3e1daf4fa1f0852345f7 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 31 Aug 2023 20:59:00 +0200 Subject: [PATCH] :paperclip: Reduce log level of worker submit operation Start logging to as TRACE instead of DEBUG --- backend/src/app/worker.clj | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/backend/src/app/worker.clj b/backend/src/app/worker.clj index 1c7bcfd1b..4d5a9d728 100644 --- a/backend/src/app/worker.clj +++ b/backend/src/app/worker.clj @@ -678,13 +678,13 @@ (-> (db/exec-one! conn [sql:remove-not-started-tasks task queue label]) :next.jdbc/update-count))] - (l/debug :hint "submit task" - :name task - :queue queue - :label label - :dedupe (boolean dedupe) - :deleted (or deleted 0) - :in (dt/format-duration duration)) + (l/trc :hint "submit task" + :name task + :queue queue + :label label + :dedupe (boolean dedupe) + :deleted (or deleted 0) + :in (dt/format-duration duration)) (db/exec-one! conn [sql:insert-new-task id task props queue label priority max-retries interval])