imseldrith commited on
Commit
9a9cf32
·
verified ·
1 Parent(s): 14b7018

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -9,7 +9,7 @@ execution_logs = []
9
  MAX_LOG_ENTRIES = 20
10
 
11
  def run_cli_script():
12
- """Runs cli.py and streams logs in real-time."""
13
  timestamp = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S UTC")
14
  log_entry = {'time': timestamp, 'output': '', 'error': ''}
15
 
@@ -22,22 +22,25 @@ def run_cli_script():
22
  bufsize=1
23
  )
24
 
25
- # Stream logs line by line
26
  for line in process.stdout:
27
  log_entry['output'] += line
28
  execution_logs.append({'time': timestamp, 'output': line, 'error': ''})
 
29
  if len(execution_logs) > MAX_LOG_ENTRIES:
30
  execution_logs.pop(0)
31
 
32
  for line in process.stderr:
33
  log_entry['error'] += line
34
  execution_logs.append({'time': timestamp, 'output': '', 'error': line})
 
35
  if len(execution_logs) > MAX_LOG_ENTRIES:
36
  execution_logs.pop(0)
37
 
38
  except Exception as e:
39
  log_entry['error'] = str(e)
40
  execution_logs.append({'time': timestamp, 'output': '', 'error': str(e)})
 
41
 
42
  def start_initial_run():
43
  threading.Thread(target=run_cli_script, daemon=True).start()
 
9
  MAX_LOG_ENTRIES = 20
10
 
11
  def run_cli_script():
12
+ """Runs cli.py and streams logs in real-time to both UI and terminal."""
13
  timestamp = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S UTC")
14
  log_entry = {'time': timestamp, 'output': '', 'error': ''}
15
 
 
22
  bufsize=1
23
  )
24
 
25
+ # Stream logs to UI and print to terminal
26
  for line in process.stdout:
27
  log_entry['output'] += line
28
  execution_logs.append({'time': timestamp, 'output': line, 'error': ''})
29
+ print(line, end="") # ✅ Print logs to terminal
30
  if len(execution_logs) > MAX_LOG_ENTRIES:
31
  execution_logs.pop(0)
32
 
33
  for line in process.stderr:
34
  log_entry['error'] += line
35
  execution_logs.append({'time': timestamp, 'output': '', 'error': line})
36
+ print(line, end="") # ✅ Print errors to terminal
37
  if len(execution_logs) > MAX_LOG_ENTRIES:
38
  execution_logs.pop(0)
39
 
40
  except Exception as e:
41
  log_entry['error'] = str(e)
42
  execution_logs.append({'time': timestamp, 'output': '', 'error': str(e)})
43
+ print(f"Error: {str(e)}") # ✅ Print error to terminal
44
 
45
  def start_initial_run():
46
  threading.Thread(target=run_cli_script, daemon=True).start()