Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(snuba-search): Remove debugging logs #76748

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -1746,14 +1744,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 @@ -1868,10 +1858,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
Loading