From 2ddf23612f49d3912aa2bee487f23fd0e0dec985 Mon Sep 17 00:00:00 2001 From: m5ingh Date: Sat, 17 Dec 2022 18:10:19 +0530 Subject: [PATCH] fix:Incorrect message when starting Storefront project #168 --- commands/develop-storefront.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/develop-storefront.js b/commands/develop-storefront.js index 6152501..393025b 100644 --- a/commands/develop-storefront.js +++ b/commands/develop-storefront.js @@ -10,7 +10,7 @@ import checkBeforeDevelop from "../utils/checkBeforeDevelop.js"; */ export default async function developStorefront(options) { if (!await checkBeforeDevelop("storefront")) return; - Logger.info("Starting Open Commerce Admin Application Server in dev mode", { options }); + Logger.info("Starting Open Commerce Storefront Application Server in dev mode", { options }); const storefront = spawn("yarn", ["run", "start:dev"]); storefront.stdout.on("data", (data) => { // eslint-disable-next-line no-console