mirror of
https://github.com/beetbox/beets.git
synced 2026-02-14 19:35:43 +01:00
debug
Co-authored-by: Adrian Sampson <adrian@radbox.org>
This commit is contained in:
parent
e54bf27546
commit
9d34d0f793
1 changed files with 1 additions and 1 deletions
|
|
@ -295,7 +295,7 @@ def album_info(release):
|
|||
# when the release has more than 500 tracks. So we use browse_recordings
|
||||
# on chunks of tracks to recover the same information in this case.
|
||||
if ntracks > BROWSE_MAXTRACKS:
|
||||
log.info(u'Album ' + str(release['id']) + u' has too many tracks')
|
||||
log.debug(u'Album {} has too many tracks', release['id'])
|
||||
log.info(u'Fetching recordings in batches of ' + str(BROWSE_CHUNKSIZE))
|
||||
recording_list = []
|
||||
for i in range(0, ntracks, BROWSE_CHUNKSIZE):
|
||||
|
|
|
|||
Loading…
Reference in a new issue