TheRoddyWMS / Roddy

The Roddy workflow development and management system.
http://roddy-documentation.readthedocs.io
MIT License
8 stars 3 forks source link

Initial logging output of wrapper is missing #129

Closed vinjana closed 7 years ago

vinjana commented 7 years ago

All the logging output that should be produced with set -x, up to the line RODDY_SCRATCH is set to ... is missing from the STDERR log files.

vinjana commented 7 years ago

The problem was cause by incorrect redirections using the single > operator to /dev/stderr. Apparently, this reopens the output stream and only the last /dev/stderr file handle is returned to PBS/LSF to be returned as standard error.

In the future, use

dankwart-de commented 7 years ago

You solved this right?

vinjana commented 7 years ago

Solved.