Searched refs:log_file_path (Results 1 – 1 of 1) sorted by relevance
330 def monitor_log_file(log_file_path): argument331 if not os.path.exists(log_file_path):332 open(log_file_path, 'w').close()334 with open(log_file_path, 'r') as log_file:371 log_file_path = 'keil.log'372 if os.path.exists(log_file_path):373 os.remove(log_file_path)374 log_thread = threading.Thread(target=monitor_log_file, args=(log_file_path,))376 cmd = 'UV4.exe -b project.uvprojx -q -j0 -t '+ target_name.text +' -o '+log_file_path
Completed in 9 milliseconds