From 82f39d993e1518479a1e0c9020437de446a09ed0 Mon Sep 17 00:00:00 2001 From: Daniel Murfin Date: Wed, 1 Sep 2021 19:45:09 +0100 Subject: [PATCH] Changes for #14 correctly returning a string containing the count of system numbers that have been reset --- Sources/OTPKit/Components/Producer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/OTPKit/Components/Producer.swift b/Sources/OTPKit/Components/Producer.swift index eb5e42f..4dc703c 100644 --- a/Sources/OTPKit/Components/Producer.swift +++ b/Sources/OTPKit/Components/Producer.swift @@ -771,7 +771,7 @@ final public class OTPProducer: Component { transformFolios = transformFolios.map { _ in FolioNumber.min } } - self.delegateQueue.async { self.debugDelegate?.debugLog("Reset \(systemNumbers?.count ?? Int(SystemNumber.max)) transform message folio numbers to \(FolioNumber.min)") } + self.delegateQueue.async { self.debugDelegate?.debugLog("Reset \(systemNumbers?.count ?? Int(SystemNumber.maxSystemNumber)) transform message folio numbers to \(FolioNumber.min)") } } }