Skip to content

Commit

Permalink
fix(spawn): The command used to spawn the binary is now debug rather …
Browse files Browse the repository at this point in the history
…than info (fixes #184)
  • Loading branch information
TimothyJones committed Oct 28, 2019
1 parent 9e45736 commit a9f1470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spawn/spawn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class Spawn {
}
});

logger.info(`Created '${cmd}' process with PID: ${instance.pid}`);
logger.debug(`Created '${cmd}' process with PID: ${instance.pid}`);
return instance;
}

Expand Down

0 comments on commit a9f1470

Please sign in to comment.