From 38d5db9658ddbcb84d5ed7ef00aeab5ff3d02832 Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Fri, 21 Dec 2018 12:12:52 -0700 Subject: [PATCH] remove unnecessary logging --- SignalServiceKit/src/Storage/SSKIncrementingIdFinder.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/SignalServiceKit/src/Storage/SSKIncrementingIdFinder.swift b/SignalServiceKit/src/Storage/SSKIncrementingIdFinder.swift index 802f2fd50..84e6a33af 100644 --- a/SignalServiceKit/src/Storage/SSKIncrementingIdFinder.swift +++ b/SignalServiceKit/src/Storage/SSKIncrementingIdFinder.swift @@ -22,7 +22,6 @@ public class SSKIncrementingIdFinder: NSObject { let nextId: UInt64 = previousId + 1 transaction.setObject(nextId, forKey: key, inCollection: collectionName) - Logger.debug("key: \(key) nextId: \(nextId)") return nextId } }