taler-ios

iOS apps for GNU Taler (wallet)
Log | Files | Refs | README | LICENSE

commit 989c5ea28c379cfd1500d9db28656bbc745cbf5f
parent 390fce1f0a45c667701d252bdb31ac91fd7a9b31
Author: Marc Stibane <marc@taler.net>
Date:   Tue,  5 Dec 2023 16:24:41 +0100

Debugging

Diffstat:
MTalerWallet1/Views/Exchange/ExchangeRowView.swift | 2+-
MTalerWallet1/Views/Peer2peer/P2PReadyV.swift | 2+-
MTalerWallet1/Views/Sheets/Payment/PayTemplateView.swift | 2+-
MTalerWallet1/Views/Transactions/TransactionDetailView.swift | 2+-
4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/TalerWallet1/Views/Exchange/ExchangeRowView.swift b/TalerWallet1/Views/Exchange/ExchangeRowView.swift @@ -7,7 +7,7 @@ import taler_swift import SymLog struct ExchangeRowView: View { - private let symLog = SymLogV() + private let symLog = SymLogV(0) let stack: CallStack let exchange: Exchange let currency: String // this is the currency to be used diff --git a/TalerWallet1/Views/Peer2peer/P2PReadyV.swift b/TalerWallet1/Views/Peer2peer/P2PReadyV.swift @@ -8,7 +8,7 @@ import SymLog // Called when initiating a P2P transaction: Send coins or Send Request(Invoice) struct P2PReadyV: View { - private let symLog = SymLogV() + private let symLog = SymLogV(0) let stack: CallStack let summary: String let expireDays: UInt diff --git a/TalerWallet1/Views/Sheets/Payment/PayTemplateView.swift b/TalerWallet1/Views/Sheets/Payment/PayTemplateView.swift @@ -9,7 +9,7 @@ import SymLog // Will be called either by the user scanning a QR code or tapping the provided link, // both from the shop's website. We show the payment details struct PayTemplateView: View { - private let symLog = SymLogV() + private let symLog = SymLogV(0) let stack: CallStack let navTitle = String(localized: "Confirm Payment", comment:"pay merchant") diff --git a/TalerWallet1/Views/Transactions/TransactionDetailView.swift b/TalerWallet1/Views/Transactions/TransactionDetailView.swift @@ -22,7 +22,7 @@ extension Transaction { // for Dummys } // MARK: - struct TransactionDetailView: View { - private let symLog = SymLogV() + private let symLog = SymLogV(0) let stack: CallStack let transactionId: String let reloadAction: ((_ transactionId: String) async throws -> Transaction)