1
0
mirror of https://github.com/fabianonline/telegram_backup.git synced 2024-11-22 16:56:16 +00:00

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

View File

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