diff --git a/packages/valory/skills/decision_maker_abci/handlers.py b/packages/valory/skills/decision_maker_abci/handlers.py index 1b112007..c52ac6f6 100644 --- a/packages/valory/skills/decision_maker_abci/handlers.py +++ b/packages/valory/skills/decision_maker_abci/handlers.py @@ -183,7 +183,7 @@ def _get_handler(self, url: str, method: str) -> Tuple[Optional[Callable], Dict] # Check base url if not re.match(self.handler_url_regex, url): self.context.logger.info( - f"The url {url} does not match the DynamicNFT HttpHandler's pattern" + f"The url {url} does not match the HttpHandler's pattern" ) return None, {} @@ -200,7 +200,7 @@ def _get_handler(self, url: str, method: str) -> Tuple[Optional[Callable], Dict] # No route found self.context.logger.info( - f"The message [{method}] {url} is intended for the DynamicNFT HttpHandler but did not match any valid pattern" + f"The message [{method}] {url} is intended for the HttpHandler but did not match any valid pattern" ) return self._handle_bad_request, {}