Skip to content

Commit

Permalink
debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
tgalvin committed Jan 24, 2024
1 parent 5bea4ee commit 84f3be0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flint/naming.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def raw_ms_format(in_name: str) -> Union[None, RawNameComponents]:
results = regex.match(in_name)

if results is None:
logger.info(f"No results to {in_name} found")
logger.debug(f"No raw_ms_format results to {in_name} found")
return None

groups = results.groupdict()
Expand Down Expand Up @@ -95,7 +95,7 @@ def processed_ms_format(in_name: Union[str, Path]) -> ProcessedNameComponents:
results = regex.match(in_name)

if results is None:
logger.info(f"No results to {in_name} found")
logger.debug(f"No processed_ms_format results to {in_name} found")
return None

groups = results.groupdict()
Expand Down

0 comments on commit 84f3be0

Please sign in to comment.