Fast refresh dev mode message (#1068)
This commit is contained in:
parent
2fa6859035
commit
0afea72eaf
@ -60,12 +60,13 @@ def run_process_and_launch_url(
|
|||||||
print(f"App running at: [bold green]{url}")
|
print(f"App running at: [bold green]{url}")
|
||||||
if (
|
if (
|
||||||
"Fast Refresh" in line
|
"Fast Refresh" in line
|
||||||
|
or "compiling..." in line
|
||||||
and (datetime.now() - current_time).total_seconds() > 1
|
and (datetime.now() - current_time).total_seconds() > 1
|
||||||
):
|
):
|
||||||
|
current_time = datetime.now()
|
||||||
print(
|
print(
|
||||||
f"[yellow][Updating App][/yellow] Applying changes and refreshing. Time: {current_time}"
|
f"[yellow][Updating App][/yellow] Applying changes and refreshing. Time: {current_time}"
|
||||||
)
|
)
|
||||||
current_time = datetime.now()
|
|
||||||
elif loglevel == constants.LogLevel.DEBUG:
|
elif loglevel == constants.LogLevel.DEBUG:
|
||||||
print(line, end="")
|
print(line, end="")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user