Skip to content

Commit

Permalink
chore(snuba-search): Remove debugging logs (#76748)
Browse files Browse the repository at this point in the history
  • Loading branch information
snigdhas committed Aug 29, 2024
1 parent f88a05d commit 428b173
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/sentry/search/snuba/executors.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 = [
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 428b173

Please sign in to comment.