From 17f373adabfa9c560c730d84d3c9f0e6940ad435 Mon Sep 17 00:00:00 2001 From: Marcin Czachursk Date: Mon, 6 Mar 2023 14:57:05 +0100 Subject: [PATCH] Remove print. --- Vernissage/Views/HomeFeedView.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/Vernissage/Views/HomeFeedView.swift b/Vernissage/Views/HomeFeedView.swift index 4cba46e..14d32b7 100644 --- a/Vernissage/Views/HomeFeedView.swift +++ b/Vernissage/Views/HomeFeedView.swift @@ -102,7 +102,6 @@ struct HomeFeedView: View { private func refreshData() async { do { - print("start...") if let account = self.applicationState.account { if let lastSeenStatusId = try await HomeTimelineService.shared.loadOnTop(for: account) { try await HomeTimelineService.shared.save(lastSeenStatusId: lastSeenStatusId, for: account) @@ -111,7 +110,6 @@ struct HomeFeedView: View { self.applicationState.amountOfNewStatuses = 0 } } - print("end...") } catch { ErrorService.shared.handle(error, message: "Error during download statuses from server.", showToastr: !Task.isCancelled) }