Skip to content

Commit

Permalink
Merge pull request #227 from kevinxmorales/master
Browse files Browse the repository at this point in the history
fix asf logger method name error
  • Loading branch information
SpicyGarlicAlbacoreRoll authored Oct 19, 2023
2 parents 0ce7234 + f90baad commit 75d4bfd
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 75d4bfd

Please sign in to comment.