mirror of
https://github.com/aclist/dztui.git
synced 2024-12-29 13:52:03 +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
|
# 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
|
## [5.6.0-beta.6] 2024-11-28
|
||||||
### Fixed
|
### Fixed
|
||||||
- Race condition when checking for installed mods
|
- Race condition when checking for installed mods
|
||||||
|
|
2
dzgui.sh
2
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
version=5.6.0-beta.6
|
version=5.6.0-beta.7
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
|
|
@ -1459,6 +1459,9 @@ class TreeView(Gtk.TreeView):
|
||||||
result = parse_mod_rows(data)
|
result = parse_mod_rows(data)
|
||||||
total_size = result[0]
|
total_size = result[0]
|
||||||
total_mods = result[1]
|
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)
|
GLib.idle_add(load)
|
||||||
|
|
||||||
def _on_col_width_changed(self, col, width):
|
def _on_col_width_changed(self, col, width):
|
||||||
|
|
Loading…
Reference in a new issue