Skip to content

Commit 16fb21a

Browse files
committed
Replace print statements with logger.debug in interpret_file_relative_to for improved logging
1 parent 4a41249 commit 16fb21a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dvue/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ def get_unique_short_names(paths):
7979

8080
def interpret_file_relative_to(base_dir, fpath):
8181
full_path = base_dir / fpath
82-
print(f"full_path: {full_path}")
82+
logger.debug(f"full_path: {full_path}")
8383
if not full_path.exists():
8484
logger.warning(f"File {full_path} does not exist. Using {fpath} instead.")
8585
full_path = fpath
86-
print(f"full_path: {full_path}")
86+
logger.debug(f"full_path: {full_path}")
8787
return full_path

0 commit comments

Comments
 (0)