Spaces:
Sleeping
Sleeping
Added some debugging messages
Browse files
app.py
CHANGED
|
@@ -562,7 +562,9 @@ if st.session_state.analyzeAllToggle == True:
|
|
| 562 |
start_time = time.time()
|
| 563 |
totalFiles = len(file_names)
|
| 564 |
for i, fname in enumerate(file_names):
|
|
|
|
| 565 |
fpath = file_paths_dict.get(fname, "")
|
|
|
|
| 566 |
if st.session_state.results.get(fname):
|
| 567 |
continue
|
| 568 |
if fpath.lower().endswith('.txt'):
|
|
|
|
| 562 |
start_time = time.time()
|
| 563 |
totalFiles = len(file_names)
|
| 564 |
for i, fname in enumerate(file_names):
|
| 565 |
+
printV(f'On {i} : {fname}',4)
|
| 566 |
fpath = file_paths_dict.get(fname, "")
|
| 567 |
+
printV(f'Path : {fpath}')
|
| 568 |
if st.session_state.results.get(fname):
|
| 569 |
continue
|
| 570 |
if fpath.lower().endswith('.txt'):
|