From: Damyan Ivanov Date: Sat, 1 Aug 2020 13:16:24 +0000 (+0300) Subject: AccountListParser: include version in debug output X-Git-Tag: v0.15.0~74 X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=commitdiff_plain;h=48e81a77a6f218ccaaa4b77fa1a84084422c7a86 AccountListParser: include version in debug output --- diff --git a/app/src/main/java/net/ktnx/mobileledger/json/v1_15/AccountListParser.java b/app/src/main/java/net/ktnx/mobileledger/json/v1_15/AccountListParser.java index 4206d0fc..8e71cbd0 100644 --- a/app/src/main/java/net/ktnx/mobileledger/json/v1_15/AccountListParser.java +++ b/app/src/main/java/net/ktnx/mobileledger/json/v1_15/AccountListParser.java @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Damyan Ivanov. + * Copyright © 2020 Damyan Ivanov. * This file is part of MoLe. * MoLe is free software: you can distribute it and/or modify it * under the term of the GNU General Public License as published by @@ -43,7 +43,7 @@ public class AccountListParser { if (next.getAname().equalsIgnoreCase("root")) return nextAccount(); - debug("accounts", String.format("Got account '%s'", next.getAname())); + debug("accounts", String.format("Got account '%s' [v1.15]", next.getAname())); return next; } }