I am running the process through forever , however I am confused about using -l , -o and -e .
From the documentation:
-l LOGFILE Logs the forever output to LOGFILE -o OUTFILE Logs stdout from child script to OUTFILE -e ERRFILE Logs stderr from child script to ERRFILE
Can anyone confirm that the output to LOGFILE (-l) includes both stdout and stderr along with eternal messages (for example, "retarting forever").
If so, I am right in assuming that -o and -e ONLY if you want to send stdout / stderr to different locations; and if you want everything in one log file -l be the only parameter you need to specify?
source share