mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
chore: lower debug to trace for packagePatterns
This commit is contained in:
parent
2364efdb39
commit
b4bfb35418
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ function getDepConfig(depTypeConfig, dep) {
|
||||||
);
|
);
|
||||||
applyRule = true;
|
applyRule = true;
|
||||||
} else if (packageRule.packagePatterns) {
|
} else if (packageRule.packagePatterns) {
|
||||||
logger.debug({ dependency }, 'Checking against packagePatterns');
|
logger.trace({ dependency }, 'Checking against packagePatterns');
|
||||||
for (const packagePattern of packageRule.packagePatterns) {
|
for (const packagePattern of packageRule.packagePatterns) {
|
||||||
const packageRegex = new RegExp(
|
const packageRegex = new RegExp(
|
||||||
packagePattern === '^*$' || packagePattern === '*'
|
packagePattern === '^*$' || packagePattern === '*'
|
||||||
|
|
Loading…
Reference in a new issue