Add log after successful global saves file loading

feature/dynamic_download_dir_changing
Michael K. Steinberg 2023-01-09 19:04:20 +02:00
rodzic eccfcb7600
commit 4bfa28c1b1
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -104,6 +104,7 @@ def save_globals_save_file():
data = json.loads(f.read())
g_downloaded_songs = json.loads(data['songs'])
g_downloaded_artist_covers = json.loads(data['artists'])
console.log(f'Loaded {len(g_downloaded_songs)} songs & {len(g_downloaded_artist_covers)} artists')
except Exception as ex:
console.error(f'Failed to load globals save file! Exception: {ex}')
while g_keep_saving > 0: