HI, I am working on using DBTShellTask as part of ...
# ask-community
i
HI, I am working on using DBTShellTask as part of my Poc with prefect. I see my Dbt shell Task fails with exit code 2... but apart from this I don't see any details on error.. Any ideas on where can I find additional logs ?
k
Hey @Ishavpreet Singh, maybe something like
Copy code
shelltask = ShellTask(
    name="shell_task",
    log_stderr=True,
    return_all=True,
    stream_output=True
)
will give more logs? Do you have these settings? The DBTShellTask inherits from ShellTask so these parameters will apply
i
trying this
Thanks