Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
fix: log shutdown signal notification to new line
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmurdoch committed Aug 6, 2021
1 parent a642d80 commit f5508da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packages/cli/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ process.on("uncaughtException", function (e) {

let receivedShutdownSignal: boolean = false;
const handleSignal = async (signal: NodeJS.Signals) => {
console.log(`Received shutdown signal: ${signal}`);
console.log(`\nReceived shutdown signal: ${signal}`);
closeHandler();
};
const closeHandler = async () => {
Expand Down

0 comments on commit f5508da

Please sign in to comment.