Skip to content

Commit

Permalink
update logging level
Browse files Browse the repository at this point in the history
  • Loading branch information
KasunAmare committed Jan 11, 2024
1 parent b8822ab commit c4171f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/triage/component/catwalk/model_grouping.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ def get_model_group_id(self, class_path, parameters, matrix_metadata, db_engine)
)
condition = cur.fetchone()

logging.info('')
if condition:
query = (
"SELECT get_model_group_id( "
Expand All @@ -140,7 +141,8 @@ def get_model_group_id(self, class_path, parameters, matrix_metadata, db_engine)
),
)
)
logger.spam(f"Getting model group from query {query}")
logger.info(f"Getting model group from query {query}")

cur.execute(query)
db_conn.commit()
model_group_id = cur.fetchone()
Expand Down

0 comments on commit c4171f2

Please sign in to comment.