Skip to content

Commit 05891ea

Browse files
committed
chore: adjust project graph creation 4
1 parent da01d55 commit 05891ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/plugin-coverage/src/lib/nx/coverage-paths.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async function resolveCachedProjectGraph() {
2222
try {
2323
return readCachedProjectGraph();
2424
} catch (e) {
25-
ui().logger.warn(
25+
ui().logger.info(
2626
'Could not read cached project graph, falling back to async creation.',
2727
);
2828
return await createProjectGraphAsync({ exitOnError: false });

packages/plugin-eslint/src/lib/nx/find-all-projects.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async function resolveCachedProjectGraph() {
1414
try {
1515
return readCachedProjectGraph();
1616
} catch (e) {
17-
ui().logger.warn(
17+
ui().logger.info(
1818
'Could not read cached project graph, falling back to async creation.',
1919
);
2020
return await createProjectGraphAsync({ exitOnError: false });

0 commit comments

Comments
 (0)