From fd0a760b779adf3689c066737f18afef6a6f2180 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 10 Apr 2024 09:49:41 +0200 Subject: [PATCH] :paperclip: Fix log levels on common file migrations --- common/src/app/common/files/migrations.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/files/migrations.cljc b/common/src/app/common/files/migrations.cljc index b62521b8f..36860b43e 100644 --- a/common/src/app/common/files/migrations.cljc +++ b/common/src/app/common/files/migrations.cljc @@ -45,7 +45,7 @@ data data] (if-let [[to-version migrate-fn] (first migrations)] (let [migrate-fn (or migrate-fn identity)] - (l/inf :hint "migrate file" + (l/trc :hint "migrate file" :op (if (>= from-version to-version) "down" "up") :file-id (str (:id data)) :version to-version)