Skip to content

Commit

Permalink
chore: set log level to debug (langflow-ai#4830)
Browse files Browse the repository at this point in the history
  • Loading branch information
italojohnny authored Nov 25, 2024
1 parent 7d44e72 commit 9b50b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/base/langflow/services/database/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def on_connection(self, dbapi_connection, _connection_record) -> None:
pragmas_list = []
for key, val in pragmas.items():
pragmas_list.append(f"PRAGMA {key} = {val}")
logger.info(f"sqlite connection, setting pragmas: {pragmas_list}")
logger.debug(f"sqlite connection, setting pragmas: {pragmas_list}")
if pragmas_list:
cursor = dbapi_connection.cursor()
try:
Expand Down

0 comments on commit 9b50b81

Please sign in to comment.