Added some more trace output for HTML export. Could be helpful for example for solving ticket #16.

This commit is contained in:
Fabian Schlenz 2016-10-05 12:37:44 +02:00
parent 89073d128a
commit cb36fb29a6
1 changed files with 2 additions and 0 deletions

View File

@ -56,8 +56,10 @@ public class HTMLExporter {
logger.debug("Fetching dialogs");
LinkedList<Database.Dialog> dialogs = db.getListOfDialogsForExport();
logger.trace("Got {} dialogs", dialogs.size());
logger.debug("Fetching chats");
LinkedList<Database.Chat> chats = db.getListOfChatsForExport();
logger.trace("Got {} chats", chats.size());
logger.debug("Generating index.html");
HashMap<String, Object> scope = new HashMap<String, Object>();