Skip to content

Commit

Permalink
fix(logging): log info about symlinking on debug (#2756)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicojs committed Feb 19, 2021
1 parent 9ed811c commit c672e2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/sandbox/sandbox.ts
Expand Up @@ -84,7 +84,7 @@ export class Sandbox implements Disposable {
}

private async symlinkNodeModulesIfNeeded(): Promise<void> {
this.log.info('Start symlink node_modules');
this.log.debug('Start symlink node_modules');
if (this.options.symlinkNodeModules && !this.options.inPlace) {
// TODO: Change with this.options.basePath when we have it
const basePath = process.cwd();
Expand Down

0 comments on commit c672e2e

Please sign in to comment.