chore(logs): remove accidental debug log for fetching tracks from artists (HOW DID I FORGET TO DO THIS FOR MONTHS LMFAOOO)
This commit is contained in:
parent
97bff01796
commit
86df459dc1
1 changed files with 0 additions and 1 deletions
|
|
@ -1112,7 +1112,6 @@ export class LosslessAPI {
|
||||||
|
|
||||||
const artistPromises = artistsToProcess.map(async (artist) => {
|
const artistPromises = artistsToProcess.map(async (artist) => {
|
||||||
try {
|
try {
|
||||||
console.log(`Fetching tracks for artist: ${artist.name} (ID: ${artist.id})`);
|
|
||||||
const artistData = await this.getArtist(artist.id, { lightweight: true, skipCache: options.refresh });
|
const artistData = await this.getArtist(artist.id, { lightweight: true, skipCache: options.refresh });
|
||||||
if (artistData && artistData.tracks && artistData.tracks.length > 0) {
|
if (artistData && artistData.tracks && artistData.tracks.length > 0) {
|
||||||
const availableTracks = artistData.tracks.filter((track) => !seenTrackIds.has(track.id));
|
const availableTracks = artistData.tracks.filter((track) => !seenTrackIds.has(track.id));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue