Skip to content

Commit

Permalink
refactor: improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
sjdonado committed Jul 28, 2024
1 parent c05644c commit ff57b99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export const search = async ({
soundCloudLink,
].filter(Boolean);

logger.info(`[${search.name}] (results) ${JSON.stringify(links, null, 2)}`);
logger.info(`[${search.name}] (results) ${links.map(link => link?.url)}`);

// Add Tidal link if at least one link is verified and Tidal is included in the adapters
if (links.some(link => link?.isVerified) && searchAdapters.includes(Adapter.Tidal)) {
Expand Down

0 comments on commit ff57b99

Please sign in to comment.