minor fix

This commit is contained in:
John Estropia
2017-05-18 21:10:43 +09:00
parent 1e24a7d739
commit 77173cdad0

View File

@@ -231,7 +231,9 @@ extension Entity: CustomDebugStringConvertible, CoreStoreDebugStringConvertible
return createFormattedString(
"(", ")",
("type", self.type),
("entityName", self.entityName)
("entityName", self.entityName),
("isAbstract", self.isAbstract),
("versionHashModifier", self.versionHashModifier)
)
}
}