Skip to content
Snippets Groups Projects
Commit 5fdc618a authored by Robert Goldmann's avatar Robert Goldmann
Browse files

improved log message

parent b6475206
No related branches found
No related tags found
No related merge requests found
Pipeline #4075 failed
......@@ -53,7 +53,7 @@ public class DatabaseParser
if(version == 4)
{
final Database database = new DatabaseParser_v4(jsonString).parseDatabaseFromJSON();
LOGGER.debug(MessageFormat.format("Parsed database with {0} transactions, {1} categories and {2} accounts and {3} templates", database.getTransactions().size(), database.getCategories().size(), database.getAccounts().size(), database.getTemplates().size()));
LOGGER.debug(MessageFormat.format("Parsed database with {0} transactions, {1} categories, {2} accounts and {3} templates", database.getTransactions().size(), database.getCategories().size(), database.getAccounts().size(), database.getTemplates().size()));
return database;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment