Skip to content

Commit 43411d7

Browse files
authored
chore: remove debug log statements from DifyAPIRepositoryFactory (#23734)
1 parent 2dbf20a commit 43411d7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

api/repositories/factory.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ def create_api_workflow_node_execution_repository(
4848
RepositoryImportError: If the configured repository cannot be imported or instantiated
4949
"""
5050
class_path = dify_config.API_WORKFLOW_NODE_EXECUTION_REPOSITORY
51-
logger.debug("Creating DifyAPIWorkflowNodeExecutionRepository from: %s", class_path)
5251

5352
try:
5453
repository_class = cls._import_class(class_path)
@@ -86,7 +85,6 @@ def create_api_workflow_run_repository(cls, session_maker: sessionmaker) -> APIW
8685
RepositoryImportError: If the configured repository cannot be imported or instantiated
8786
"""
8887
class_path = dify_config.API_WORKFLOW_RUN_REPOSITORY
89-
logger.debug("Creating APIWorkflowRunRepository from: %s", class_path)
9088

9189
try:
9290
repository_class = cls._import_class(class_path)

0 commit comments

Comments
 (0)