From 3e77859af6f81ef19fd60c797ee56e12e629a769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Leuth=C3=A4user?= <1417198+max-leuthaeuser@users.noreply.github.com> Date: Thu, 6 Nov 2025 09:58:20 +0100 Subject: [PATCH 1/2] Fix string interpolation in debug log --- core/src/main/scala/flatgraph/storage/Serialization.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/flatgraph/storage/Serialization.scala b/core/src/main/scala/flatgraph/storage/Serialization.scala index dab74c87..84279297 100644 --- a/core/src/main/scala/flatgraph/storage/Serialization.scala +++ b/core/src/main/scala/flatgraph/storage/Serialization.scala @@ -286,7 +286,7 @@ object Serialization { val manifest = new GraphItem(nodeKinds.toArray, edgeKinds.toArray, propertyKinds.toArray) writer.finish(manifest) - logger.debug(s"wrote ${nodeKinds.size} node kinds, {edges.size} edge kinds and ${propertyKinds.size} property kinds") + logger.debug(s"wrote ${nodeKinds.size} node kinds, ${edges.size} edge kinds and ${propertyKinds.size} property kinds") Counts(nodeKinds.size, edgeKinds.size, propertyKinds.size) } From 40e5e3256e34bf5e2d89d29f0196d27bb5aad56e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Leuth=C3=A4user?= <1417198+max-leuthaeuser@users.noreply.github.com> Date: Thu, 6 Nov 2025 10:06:33 +0100 Subject: [PATCH 2/2] Fix logging of edge kinds count in Serialization.scala --- core/src/main/scala/flatgraph/storage/Serialization.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/flatgraph/storage/Serialization.scala b/core/src/main/scala/flatgraph/storage/Serialization.scala index 84279297..fc9a862d 100644 --- a/core/src/main/scala/flatgraph/storage/Serialization.scala +++ b/core/src/main/scala/flatgraph/storage/Serialization.scala @@ -286,7 +286,7 @@ object Serialization { val manifest = new GraphItem(nodeKinds.toArray, edgeKinds.toArray, propertyKinds.toArray) writer.finish(manifest) - logger.debug(s"wrote ${nodeKinds.size} node kinds, ${edges.size} edge kinds and ${propertyKinds.size} property kinds") + logger.debug(s"wrote ${nodeKinds.size} node kinds, ${edgeKinds.size} edge kinds and ${propertyKinds.size} property kinds") Counts(nodeKinds.size, edgeKinds.size, propertyKinds.size) }