mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 21:32:36 +01:00
chore: add logging
This commit is contained in:
parent
e28a75cfd9
commit
94f9ac52c5
3 changed files with 8 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
## [5.6.0-beta.7] 2024-11-28
|
||||
### Changed
|
||||
- Add additional logging when fetching installed mods
|
||||
|
||||
## [5.6.0-beta.6] 2024-11-28
|
||||
### Fixed
|
||||
- Race condition when checking for installed mods
|
||||
|
|
2
dzgui.sh
2
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
|
||||
version=5.6.0-beta.6
|
||||
version=5.6.0-beta.7
|
||||
|
||||
#CONSTANTS
|
||||
aid=221100
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue