From a3f3e31c73bea672208bdc910ff58d30ee8146bc Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 14 Sep 2023 17:45:26 +0200 Subject: [PATCH] :sparkles: Add minor logging improvement on binfile --- backend/src/app/rpc/commands/binfile.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/rpc/commands/binfile.clj b/backend/src/app/rpc/commands/binfile.clj index b87dc565c..e2a16abea 100644 --- a/backend/src/app/rpc/commands/binfile.clj +++ b/backend/src/app/rpc/commands/binfile.clj @@ -794,7 +794,7 @@ index index] (if-let [id (first items)] (let [new-id (if (::overwrite? *options*) id (uuid/next))] - (l/debug :fn "update-index" :id id :new-id new-id ::l/sync? true) + (l/trc :fn "update-index" :id id :new-id new-id ::l/sync? true) (recur (rest items) (assoc index id new-id))) index)))