diff --git a/backend/resources/log4j2-devenv.xml b/backend/resources/log4j2-devenv.xml
index 0b47eea892..70e54ba76c 100644
--- a/backend/resources/log4j2-devenv.xml
+++ b/backend/resources/log4j2-devenv.xml
@@ -31,6 +31,7 @@
+
diff --git a/common/src/app/common/files/migrations.cljc b/common/src/app/common/files/migrations.cljc
index 14a1a5a977..a27ce7370f 100644
--- a/common/src/app/common/files/migrations.cljc
+++ b/common/src/app/common/files/migrations.cljc
@@ -33,7 +33,7 @@
(if (= (:version data) to-version)
data
(let [migrate-fn #(do
- (l/trc :hint "migrate file" :id (:id %) :version-from %2 :version-to (inc %2))
+ (l/dbg :hint "migrate file" :id (:id %) :version-from %2 :version-to (inc %2))
(migrate (assoc %1 :version (inc %2))))]
(reduce migrate-fn data (range (:version data 0) to-version))))))