diff --git a/src/sentry/search/snuba/executors.py b/src/sentry/search/snuba/executors.py index 2a9c918b2121e3..a0f38d55238395 100644 --- a/src/sentry/search/snuba/executors.py +++ b/src/sentry/search/snuba/executors.py @@ -1162,8 +1162,6 @@ class InvalidQueryForExecutor(Exception): class GroupAttributesPostgresSnubaQueryExecutor(PostgresSnubaQueryExecutor): - logger = logging.getLogger("sentry.search.group-attributes-postgressnuba") - def get_times_seen_filter( self, search_filter: SearchFilter, joined_entity: Entity ) -> Condition: @@ -1748,14 +1746,6 @@ def query( if self.should_check_search_issues(group_categories, search_filters): entities_to_check.append(search_issues_entity) - self.logger.info( - "searching for groups", - extra={ - "organization_id": organization.id, - "entities": entities_to_check, - "search_filters": search_filters, - }, - ) for joined_entity in entities_to_check: is_errors = joined_entity.name == ENTITY_EVENTS where_conditions = [ @@ -1870,10 +1860,6 @@ def query( select.append(sort_func) - self.logger.info( - "searching for groups with where conditions", - extra={"organization_id": organization.id, "where_conditions": where_conditions}, - ) query = Query( match=Join([Relationship(joined_entity, "attributes_inner", attr_entity)]), select=select,