Skip to content
Snippets Groups Projects
Commit 4e5434b8 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix(pypi): log attempts and success

parent 96f8e9cb
No related branches found
No related tags found
No related merge requests found
......@@ -183,8 +183,11 @@ export async function getPkgReleases({
dep = await getDependency(lookupName, hostUrl, compatibility);
}
if (dep !== null) {
logger.debug({ lookupName, hostUrl }, 'Found pypi result');
return dep;
}
logger.debug({ lookupName, hostUrl }, 'No pypi result');
}
logger.debug({ lookupName, registryUrls }, 'Pypi lookup returning null');
return null;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment