Date: Thu, 3 Aug 2000 20:58:26 -0400
   From: Adam McKenna <[EMAIL PROTECTED]>

   I am pretty sure svscan expects the logging to come through on a certain file
   descriptor, but not positive.  Does anyone know if this is the case?  If so,
   which one is it?  Should I just add a 2>&1 at the end of "run"?

svscan simply creates a pipe.  That is, it redirects stdout of ./run
to stdin of ./log/run.  It doesn't do anything with stderr.  If your
program logs to stderr, then 2>&1 in ./run will redirect the logs to
the stdout of ./run and hence to the stdin of ./log/run.  So that
should fix your problem.

Ian

Reply via email to