Marshall Krassenstein
11/07/2024, 5:02 PMbootstrap_project(Path("."))
with KedroSession.create() as session:
session.run()
But pulumi restricts logs of anything that isn't explicitly a pulumi asset. Pulumi does allow you to log arbitrary python code https://www.pulumi.com/docs/iac/concepts/logging/ by running for example <http://pulumi.info|pulumi.info>(message)
pulumi.warning(message)
etc..
Is there any way I could intercept the kedro logging system so that instead of it running something like <http://logger.info|logger.info>(message)
to emit a message, it could run <http://pulumi.info|pulumi.info>(message)
?Hall
11/07/2024, 5:02 PMNok Lam Chan
11/07/2024, 5:09 PMBut pulumi restricts logs of anything that isn't explicitly a pulumi asset. Pulumi does allow you to log arbitrary python code https://www.pulumi.com/docs/iac/concepts/logging/ by running for exampleI am not familiar with Pulumi, but it sounds strange if it prevent Python logging since Kedro won't be the only problem you have.<http://pulumi.info|pulumi.info>(message)
etc..pulumi.warning(message)
Nok Lam Chan
11/07/2024, 5:10 PM