1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-06-28 03:48:57 +02:00

chore: add logging

This commit is contained in:
aclist 2024-11-28 22:37:15 +09:00
parent e28a75cfd9
commit 94f9ac52c5
3 changed files with 8 additions and 1 deletions
helpers

View file

@ -1459,6 +1459,9 @@ class TreeView(Gtk.TreeView):
result = parse_mod_rows(data)
total_size = result[0]
total_mods = result[1]
logger.info("Found mods on local system")
logger.info("Total mod size: %s" %(total_size))
logger.info("Total mod count: %s" %(total_mods))
GLib.idle_add(load)
def _on_col_width_changed(self, col, width):