Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/workers/repository/process/fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ async function lookup(
}

if (depConfig.enabled === false) {
logger.debug(`Dependency: ${depName!}, is disabled`);
logger.debug(
{ packageFile: depConfig.packageFile },
`Dependency: ${depName!}, is disabled`,
Comment on lines +71 to +72
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This info is present in packageFile with updates, so maybe not needed

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is, but the intent of this PR is that when you have many of these logs, it's unclear which package file it's for

);
dep.skipReason = 'disabled';
return Result.ok(dep);
}
Expand Down