From 8eccd0277e307e0ab91a218622308d3c1ab392dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Leuth=C3=A4user?= <1417198+max-leuthaeuser@users.noreply.github.com> Date: Fri, 22 Aug 2025 13:06:13 +0200 Subject: [PATCH] Fix logging message for closing graph --- core/src/main/scala/flatgraph/Graph.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/flatgraph/Graph.scala b/core/src/main/scala/flatgraph/Graph.scala index 2cd3bb47..11421d80 100644 --- a/core/src/main/scala/flatgraph/Graph.scala +++ b/core/src/main/scala/flatgraph/Graph.scala @@ -161,7 +161,7 @@ class Graph(val schema: Schema, val storagePathMaybe: Option[Path] = None) exten } { logger.debug(s"closing graph: start writing changes to $storagePath") Serialization.writeGraph(this, storagePath) - logger.info(s"closed graph at $storagePath}") + logger.info(s"closed graph at $storagePath") } }