https://prefect.io logo
Title
j

Justin

02/25/2023, 9:13 PM
HELP~ I'm having an issue where prefect cloud doesn't log anything. whereas Orion does with the same script. (Can see it in the attached screen shots) The Script:
from prefect import flow

@flow(log_prints=True)
def hello():
    print("whats up prefectttt!!")


if __name__ == "__main__":
    hello()
What I've already done: • Create and work in a virtual env where prefect is up to date. • I've set the PREFECT_API_URL so it is connected to my prefect-cloud workspace (Link) • Connected to prefect-cloud via CLI with
prefect cloud login
I've looked around and have yet to find anyone with this specific situation....
m

Mason Menges

02/27/2023, 10:09 PM
Hey @Justin do you have any logging configurations set or are you using a customer logging.yml file, I had some similar issues recently but recreating/removing the logging.yml file from
~/.prefect
ended up resolving this for me.
j

Justin

02/28/2023, 7:54 AM
Hi @Mason Menges, I do not have any logging configurations, nor do I use customer logging.yml file....
😅 1