Modifying print statement for an unexpected type for primary keys

This commit is contained in:
Ryan Coyne 2017-08-13 14:56:21 -04:00
parent 1cbb94d729
commit 4ee391dcd5
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ open class StORM {
case is String.Type, is String?.Type:
return (val as! String).isEmpty
default:
print("[StORM] WARNING: Switched unexpected type for PRIMARY KEY in function: \(#function). TYPE: \(type)")
print("[StORM] WARNING: Unexpected type for PRIMARY KEY in function: \(#function). TYPE: \(type)")
return false
}