From 77173cdad06925eb298d1f639467f0d39238c937 Mon Sep 17 00:00:00 2001 From: John Estropia Date: Thu, 18 May 2017 21:10:43 +0900 Subject: [PATCH] minor fix --- Sources/CoreStore+CustomDebugStringConvertible.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Sources/CoreStore+CustomDebugStringConvertible.swift b/Sources/CoreStore+CustomDebugStringConvertible.swift index 77fcdaf..2ab49fb 100644 --- a/Sources/CoreStore+CustomDebugStringConvertible.swift +++ b/Sources/CoreStore+CustomDebugStringConvertible.swift @@ -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) ) } }