Skip to content

Commit

Permalink
remove logging of query
Browse files Browse the repository at this point in the history
  • Loading branch information
devksingh4 committed Jul 20, 2024
1 parent c362921 commit fb0491d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion code/util/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,6 @@ def recruiter_perform_search():
db_connection = get_db_connection(db_config, "resume_book_recruiter_search")
with db_connection.transaction():
with db_connection.cursor(row_factory=dict_row) as cur:
logger.info(search_query)
cur.execute(search_query)
search_result = [convert_dict_keys_snake_to_camel(x) for x in cur.fetchall()]
except pydantic.ValidationError as e:
Expand Down

0 comments on commit fb0491d

Please sign in to comment.