From 147c42fc4a699f0678b7a7c679ac9a192cd0574d Mon Sep 17 00:00:00 2001 From: cha0s Date: Thu, 25 Mar 2021 02:43:16 -0500 Subject: [PATCH] chore: reporting --- packages/http/src/server.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/http/src/server.js b/packages/http/src/server.js index 0f0d683..2b71a76 100644 --- a/packages/http/src/server.js +++ b/packages/http/src/server.js @@ -43,7 +43,10 @@ export default { shell: true, stdio: 'inherit', }; - spawn(`${binary} --hot --inline --mode development --config ${config}`, options); + const invocation = `${binary} --mode development --hot --config ${config}`; + // eslint-disable-next-line no-console + console.log(`@latus/http: ${invocation}`); + spawn(invocation, options); } return undefined; },