Hi, In Prefect 1, is it possible to somehow expor...
# ask-community
n
Hi, In Prefect 1, is it possible to somehow export the whole log file for the task as opposed to only what's shown on the screen?
1
k
Hi Nace, you could query the client for the logs from the task using something like this
Copy code
query{
 	task_run {
    name
    id
    state
    logs
    {
      message
      timestamp
    }
    }
}
🙏 1