Skip to content

Commit

Permalink
tweaks info to be debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
David Erb committed Feb 21, 2023
1 parent f42aa5d commit 4845f1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dls_servbase_lib/base_aiohttp.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,10 +532,10 @@ async def release_cookies(self, opaque):
if self.__cookie_specification is None:
return

logger.info("[RELCOOK] releasing cookies")
logger.debug("[RELCOOK] releasing cookies")

for cookie in opaque.cookies.list():
logger.info("[RELCOOK] releasing cookie")
logger.debug("[RELCOOK] releasing cookie")
await cookie.release()

# ----------------------------------------------------------------------------------------
Expand Down

0 comments on commit 4845f1e

Please sign in to comment.