So the code isn't anything special, I'm going to inspect my code to see if I can provide any additional context but I think the issue right now is that prefect's included logging can catch print statements (that's fine, the documentation told me to expect this), but our legacy pipelines import logger the module.
I know these logger logs are appearing because these pipelines run every day and we get output via CLI. At the moment, my development process is being stop gapped by using print() in critical places so I have some sort of informational anchor, but I'd love to be able to just pass through the existing log system that we have.
So far, declaring logging as an action doesn't actually show me anything in Prefect Logs while I'm running tests, but my print statements show up as expected.