mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
logs: log regUrl for mismatched npm lookup
This commit is contained in:
parent
14712ca5f8
commit
b2183fe0c2
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ async function getDependencyInner(name, retries = 5) {
|
||||||
})).body;
|
})).body;
|
||||||
if (res.name !== name) {
|
if (res.name !== name) {
|
||||||
logger.warn(
|
logger.warn(
|
||||||
{ lookupName: name, returnedName: res.name },
|
{ lookupName: name, returnedName: res.name, regUrl },
|
||||||
'Returned name does not match with requested name'
|
'Returned name does not match with requested name'
|
||||||
);
|
);
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in a new issue