Hello,
I’m trying logging inside of a model adapter’s model code, logging example code:
import logging
logger = logging.getLogger(__name__)
logger.info("Hello World")
Executing the model code in a transform adds my logs to the Build’s logs. But when I use the published model asset the logs are not inside the Build where the model asset is used. I consume the Model Asset in a transform via a ModelInput.
How can I add/enable the logging inside of the model asset in the Build logs that use the model asset?
Thanks in advance for your help!