Two common Linux examples:
my_app_printing_logs_to_stderr 2> devel.log &
or (since we like tail -f)
tail -F my_app.log devel.log &
See this post on the topic of printing the application log to a file: Confd_trace log file
I would prefer CONFD_TRACE for debugging my application and CONFD_DEBUG when deploying