Skip to content
Snippets Groups Projects
Unverified Commit 07b98a90 authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

chore: improve/lower extract logging (#16181)

parent dc34060c
Branches
No related tags found
No related merge requests found
......@@ -294,7 +294,9 @@ export function extractPackageFile(content: string): PackageFile | null {
}
if (fromMatch.groups?.name) {
logger.debug('Found a multistage build stage name');
logger.debug(
`Found a multistage build stage name: ${fromMatch.groups.name}`
);
stageNames.push(fromMatch.groups.name);
}
if (fromImage === 'scratch') {
......
......@@ -74,7 +74,7 @@ export function extractPackageFile(content: string): PackageFile | null {
dep.managerData!.multiLine = true;
deps.push(dep);
} else if (line.trim() !== ')') {
logger.debug(`No multi-line match: ${line}`);
logger.trace(`No multi-line match: ${line}`);
}
} while (line.trim() !== ')');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment