How can I filter to only my transform logs in build logs?

Hello,
I’ve got python transform builds and I’m using the logging libraries with statements like this:

logging.info(f"Started process for {param}")

I’d like to be able to filter to specifically the logs generated by my code in the Build logs UI, how can I do that?

1 Like

This is a long standing feature request of mine as well. So annoying that this is not possible with 1 click.

1 Like

What I’d typically do is filter on the message property. In your case, it might be something like “message”
“Starts with”
“Started process for”

I would assume “Started process for” prefix might be used by some sys logs, so maybe try and make it unique if you’re still getting a flood of logs.