Skip to content

Commit ef8c42c

Browse files
committed
added log statements
1 parent d2a6d44 commit ef8c42c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

smct/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ def _check_for_missing_files():
2727

2828
# Check for Icons
2929
if not os.path.exists(paths.ASSETS_ICO_PATH):
30-
log(f"{paths.ASSETS_ICO_PATH} not found! Downloading...")
30+
log(f"Downloading icon.ico - {paths.ASSETS_BASE_URL}")
3131
download_assets_file(os.path.basename(paths.ASSETS_ICO_PATH))
3232
# sys.exit(1)
3333
if not os.path.exists(paths.ASSETS_ICON_ENABLED_PATH):
34-
log(f"{paths.ASSETS_ICON_ENABLED_PATH} not found! Downloading...")
34+
log(f"Downloading iconEnabled.png - {paths.ASSETS_BASE_URL}")
3535
download_assets_file(os.path.basename(paths.ASSETS_ICON_ENABLED_PATH))
3636
# sys.exit(1)
3737
if not os.path.exists(paths.ASSETS_ICON_DISABLED_PATH):
38-
log(f"{paths.ASSETS_ICON_DISABLED_PATH} not found! Downloading...")
38+
log(f"Downloading iconDisabled.png - {paths.ASSETS_BASE_URL}")
3939
download_assets_file(os.path.basename(paths.ASSETS_ICON_DISABLED_PATH))
4040
# sys.exit(1)
4141

0 commit comments

Comments
 (0)