From 3ba0f558a365be0f9e68c871bf35ecd0711b5f07 Mon Sep 17 00:00:00 2001 From: Masen Furer Date: Wed, 8 Jan 2025 16:21:46 -0800 Subject: [PATCH] debuggin info --- reflex/utils/exec.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reflex/utils/exec.py b/reflex/utils/exec.py index 621c4a608..6f747d0ff 100644 --- a/reflex/utils/exec.py +++ b/reflex/utils/exec.py @@ -114,7 +114,7 @@ def run_process_and_launch_url(run_command: list[str], backend_present=True): notify_backend() first_run = False else: - console.print("New packages detected: Updating app...") + console.print(f"New packages detected: Updating app... {line}") else: if any( x in line for x in ("bin executable does not exist on disk",) @@ -127,9 +127,12 @@ def run_process_and_launch_url(run_command: list[str], backend_present=True): new_hash = detect_package_change(json_file_path) if new_hash != last_hash: last_hash = new_hash + console.print("Reloading app...") kill(process.pid) process = None break # for line in process.stdout + else: + console.print(f"No change: {line}") if process is not None: break # while True