diff --git a/integrations/snyk/snyk/client.py b/integrations/snyk/snyk/client.py index 67a12fbe9..1aa7e7ac2 100644 --- a/integrations/snyk/snyk/client.py +++ b/integrations/snyk/snyk/client.py @@ -387,7 +387,7 @@ async def get_all_organizations(self) -> list[dict[str, Any]]: async def get_organizations_in_groups(self) -> list[Any]: # Check if the result is already cached if cache := event.attributes.get(CacheKeys.GROUP): - logger.debug("Fetched Snyk organizations from the cache") + logger.info("Fetched Snyk organizations from the cache") return cache all_organizations = await self.get_all_organizations()