Skip to content

Commit

Permalink
Merge pull request #10 from yuvalherziger/relax-logs
Browse files Browse the repository at this point in the history
Relax logs
  • Loading branch information
yuvalherziger authored Aug 3, 2022
2 parents 676bebc + a858864 commit 77d6a03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions aiohttp_catcher/catcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ async def add_scenario(self, scenario: Union[Scenario, Dict]):
for exc in exceptions:
exc_module = await get_full_class_name(exc)
if exc_module in self.scenario_map:
LOGGER.warning("A new handler for <%s> has been registered. It will override existing handlers",
exc_module)
LOGGER.debug("A new handler for <%s> has been registered. It will override existing handlers",
exc_module)
self.scenario_map[exc_module] = scenario

async def add_scenarios(self, *scenarios: Union[Scenario, Dict]):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aiohttp-catcher"
version = "0.3.1"
version = "0.3.2"
description = "A centralized error handler for aiohttp servers"
authors = ["Yuval Herziger <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 77d6a03

Please sign in to comment.