From d528a70bfc4939d11e3e9c4478138152d115b11b Mon Sep 17 00:00:00 2001
From: Ryan ZHAO <>
Date: Thu, 30 Jan 2025 16:14:20 +1100
Subject: [PATCH] clean up

---
 SessionUtilitiesKit/Utilities/BencodeResponse.swift | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/SessionUtilitiesKit/Utilities/BencodeResponse.swift b/SessionUtilitiesKit/Utilities/BencodeResponse.swift
index b2b2b784e..d3ec8e4b9 100644
--- a/SessionUtilitiesKit/Utilities/BencodeResponse.swift
+++ b/SessionUtilitiesKit/Utilities/BencodeResponse.swift
@@ -15,16 +15,13 @@ extension BencodeResponse: Decodable {
         info = try {
             /// First try to decode it directly
             if let info: T = try? container.decode(T.self) {
-                SNLog("Successfully decoded info directly")
                 return info
             }
             
             /// If that failed then we need to reset the container and try decode it as a JSON string
             container = try decoder.unkeyedContainer()
             let infoString: String = try container.decode(String.self)
-            SNLog("Successfully decoded info to JSON string")
             let infoData: Data = try infoString.data(using: .ascii) ?? { throw NetworkError.parsingFailed }()
-            SNLog("Successfully decoded info to JSON data")
             return try JSONDecoder(using: decoder.dependencies).decode(T.self, from: infoData)
         }()