Skip to content

Commit

Permalink
Merge pull request #1348 from lowdefy/fix-cli-install-debug-log
Browse files Browse the repository at this point in the history
fix: Log server install output at debug level.
  • Loading branch information
Gervwyk committed Aug 24, 2022
2 parents 12eae60 + c77a220 commit 5b1bf42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/utils/installServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ async function installServer({ context, directory }) {
await spawnProcess({
command: context.packageManagerCmd,
args: args[context.packageManager],
stdOutLineHandler: (line) => context.print.debug(line),
processOptions: {
cwd: directory,
},
silent: false,
});
} catch (error) {
console.log(error);
Expand Down

0 comments on commit 5b1bf42

Please sign in to comment.