Skip to content

Commit a3fa5e6

Browse files
committed
debugging
1 parent e6e63b3 commit a3fa5e6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

apollo-ios/Sources/ApolloAPI/SelectionSet+Equatable.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@ public extension SelectionSet {
4242
_ lhs: T,
4343
_ rhs: any Hashable
4444
) -> Bool {
45-
if String(describing: self) == "FriendsConnection" && (lhs != rhs as? T) {
45+
if lhs != rhs as? T {
4646
print("""
47-
equatableCheck failure:
47+
equatableCheck failure on \(String(describing: self))
48+
T: \(String(describing: T.self))
4849
lhs: \(lhs)
4950
rhs: \(rhs), as? T: \(rhs as? T)
5051
""")

0 commit comments

Comments
 (0)