Skip to content

Commit bfa68fb

Browse files
committed
Use minimal info logging
1 parent a54f7e3 commit bfa68fb

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/isolate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export async function isolate(
5454
path.join(path.join(__dirname, "..", "package.json"))
5555
);
5656

57-
log.debug("Using isolate-package version", libraryVersion);
57+
log.info("Using isolate-package version", libraryVersion);
5858

5959
/**
6060
* If a targetPackagePath is set, we assume the configuration lives in the

src/lib/lockfile/helpers/generate-npm-lockfile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function generateNpmLockfile({
1818
}) {
1919
const log = useLogger();
2020

21-
log.info("Generating NPM lockfile...");
21+
log.debug("Generating NPM lockfile...");
2222

2323
const origRootNodeModulesPath = path.join(workspaceRootDir, "node_modules");
2424
const tempRootNodeModulesPath = path.join(isolateDir, "node_modules");

src/lib/lockfile/helpers/generate-pnpm-lockfile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export async function generatePnpmLockfile({
4646
const { includeDevDependencies, includePatchedDependencies } = useConfig();
4747
const log = useLogger();
4848

49-
log.info("Generating PNPM lockfile...");
49+
log.debug("Generating PNPM lockfile...");
5050

5151
try {
5252
const isRush = isRushWorkspace(workspaceRootDir);

src/lib/lockfile/helpers/generate-yarn-lockfile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function generateYarnLockfile({
1818
}) {
1919
const log = useLogger();
2020

21-
log.info("Generating Yarn lockfile...");
21+
log.debug("Generating Yarn lockfile...");
2222

2323
const origLockfilePath = isRushWorkspace(workspaceRootDir)
2424
? path.join(workspaceRootDir, "common/config/rush", "yarn.lock")

src/lib/lockfile/process-lockfile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export async function processLockfile({
5151
isolateDir,
5252
});
5353
} else {
54-
log.info(
54+
log.warn(
5555
"Detected modern version of Yarn. Using NPM lockfile fallback."
5656
);
5757

0 commit comments

Comments
 (0)