Skip to content

Commit

Permalink
fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem committed Jun 5, 2024
1 parent 8c0ddbf commit 547b1d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function startDevServer(srcs: string[], dists: string[], devJsonPath: str
},
};

log.info(`Adding ${srcs} to already existing dev server...`);
log.info(`Adding workspace to already existing dev server...`);
const req = http.request(options, (res) => {
res.setEncoding('utf8');
let data = '';
Expand Down Expand Up @@ -123,7 +123,7 @@ export function createApp(devJsonPath: string, opts: DevOptions): Express.Applic
const srcs = req.body.srcs;
const dists = req.body.dists;
if (srcs.length != dists.length) {
log.info("Number of apps isn't coutable.");
log.info("Number of apps don't match. Aborting.");
return res.status(500).send("Error adding apps to dev server.");
}

Expand Down

0 comments on commit 547b1d2

Please sign in to comment.