Skip to content

Commit

Permalink
fix asf logger method name error
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinxmorales committed Oct 1, 2023
1 parent e7df54f commit 7213a91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asf_search/ASFSearchOptions/ASFSearchOptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def merge_args(self, **kwargs) -> None:
# Spit out warning if the value is something other than the default:
if not self._is_val_default(key):
msg = f'While merging search options, existing option {key}:{getattr(self, key, None)} overwritten by kwarg with value {kwargs[key]}'
ASF_LOGGER.warging(msg)
ASF_LOGGER.warning(msg)
warnings.warn(msg)
self.__setattr__(key, kwargs[key])

Expand Down

0 comments on commit 7213a91

Please sign in to comment.