Skip to content

Commit 5999379

Browse files
authored
chore(cli): improve "waiting for dev server" message, closes #3491 (#3504)
1 parent b571c24 commit 5999379

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"cli.rs": patch
3+
"cli.js": patch
4+
---
5+
6+
Improve "waiting for your dev server to start" message.

tooling/cli/src/dev.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,10 @@ pub fn command(options: Options) -> Result<()> {
210210
break;
211211
}
212212
if i % 3 == 0 {
213-
logger.warn("Waiting for your dev server to start...");
213+
logger.warn(format!(
214+
"Waiting for your frontend dev server to start on {}...",
215+
dev_server_url
216+
));
214217
}
215218
i += 1;
216219
if i == max_attempts {

0 commit comments

Comments
 (0)