Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
silil committed Oct 27, 2023
1 parent feca85c commit 37f526a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/triage/component/architect/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,12 +586,12 @@ def remove_unnecessary_files(self, filenames, path_, matrix_uuid):
# deleting features and label csvs
for filename_ in filenames:
cmd_line = 'rm ' + filename_
logging.debug(f"removing files with command {cmd_line}")
logger.debug(f"removing files with command {cmd_line}")
subprocess.run(cmd_line, shell=True)

# deleting the merged csv
cmd_line = 'rm ' + path_ + "/" + matrix_uuid + '.csv'
logging.debug(f"removing stitched csv with command {cmd_line}")
logger.debug(f"removing stitched csv with command {cmd_line}")
subprocess.run(cmd_line, shell=True)


0 comments on commit 37f526a

Please sign in to comment.