Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 75bd5fa

Browse files
committed
df: memory: Log on instance creation with given config
Signed-off-by: John Andersen <[email protected]>
1 parent 0af3bf2 commit 75bd5fa

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dffml/df/memory.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,6 +1230,13 @@ async def initialize_dataflow(self, dataflow: DataFlow) -> None:
12301230
operation.name,
12311231
)
12321232
opimp_config = BaseConfig()
1233+
else:
1234+
self.logger.debug(
1235+
"Instantiating operation implementation %s(%s) with provided config %r",
1236+
operation.instance_name,
1237+
operation.name,
1238+
opimp_config,
1239+
)
12331240
if isinstance(opimp_config, dict) and hasattr(
12341241
getattr(opimp, "CONFIG", False), "_fromdict"
12351242
):

0 commit comments

Comments
 (0)