Remove logs stating available/selected tracks

These are now unnecessary to distinguish as only one of the two will appear in the log depending what args are used.
This commit is contained in:
rlaphoenix 2023-02-25 13:19:45 +00:00
parent 96f408ca49
commit cc69423374
1 changed files with 0 additions and 2 deletions

View File

@ -332,7 +332,6 @@ class dl:
title.tracks.sort_chapters() title.tracks.sort_chapters()
if list_: if list_:
console.log("> All Tracks:")
available_tracks = title.tracks.tree() available_tracks = title.tracks.tree()
console.log(available_tracks) console.log(available_tracks)
continue continue
@ -415,7 +414,6 @@ class dl:
title.tracks.subtitles.clear() title.tracks.subtitles.clear()
selected_tracks = title.tracks.tree() selected_tracks = title.tracks.tree()
console.log("> Selected Tracks:")
console.log(selected_tracks) console.log(selected_tracks)
if skip_dl: if skip_dl: