Skip to content

Commit

Permalink
Fix: Invalid error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
zorbathut committed Nov 25, 2024
1 parent 1f53d48 commit 7d5116f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Database.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static void RegisterLookup(object obj, Path path)

if (DecPathLookup.ContainsKey(obj))
{
Dbg.Err($"Attempting to register {obj} with path [{serialized}], but it's already registered with path {DecPathLookup[obj]}");
Dbg.Err($"Attempting to register {obj} with path [{serialized}], but it's already registered with path {DecPathLookup[obj].Serialize()}");
return;
}

Expand Down

0 comments on commit 7d5116f

Please sign in to comment.