in reply to dies with no message
Maybe one of the use'd modules calls exit without an error message?
Alternatively, the module might close STDIN and STDERR so you never get to see those messages.
Start removing/commenting out use lines
in your program.Also, you mention two programs, one calling and a called program. Maybe the calling program closes STDIN and STDERR of the child, and thus hides the error from you?
|
|---|