TenzinGayche commited on
Commit
6413bc5
·
verified ·
1 Parent(s): bd6f671

Update handler.py

Browse files
Files changed (1) hide show
  1. handler.py +1 -1
handler.py CHANGED
@@ -117,7 +117,7 @@ def convert_raw_align_to_tm(align_fn: Path, tm_path: Path):
117
  # Read and log the content of the file
118
  content = fn.read_text()
119
  if content:
120
- logging.info(f"Content of {fn.name}: {content[:10]}...") # Log first 100 characters
121
  else:
122
  logging.warning(f"File is empty: {fn}")
123
 
 
117
  # Read and log the content of the file
118
  content = fn.read_text()
119
  if content:
120
+ logging.info(f"Content length of {fn.name}: {len(content)} characters") # Log first 100 characters
121
  else:
122
  logging.warning(f"File is empty: {fn}")
123