Hi, I configured a Slurm job with err & out files, but only the err file had output written after running the CWL Conformance tests (kinow/cwl-mpi#20).
I think it's because we are using the Python StreamHandler,
|
logger.addHandler(logging.StreamHandler()) |
, without specifying the stream to write to.
Returns a new instance of the StreamHandler class. If stream is specified, the instance will use it for logging output; otherwise, sys.stderr will be used.
It's a harmless issue, but it would still be nice to organize the log.info / error output separately for some users.
Hi, I configured a Slurm job with err & out files, but only the err file had output written after running the CWL Conformance tests (kinow/cwl-mpi#20).
I think it's because we are using the Python
StreamHandler,cwltest/src/cwltest/__init__.py
Line 11 in 9a35520
It's a harmless issue, but it would still be nice to organize the log.info / error output separately for some users.