in reply to Re^2: Logging run-time warnings from an embedded perl interpreter
in thread [RESOLVED*] Logging run-time warnings from an embedded perl interpreter

As far as I know "use strict" and "use warnings" use warn/die to "spit" out messages. I have use "$SIG{__WARN__}" and "$SIG{__DIE__}" to catch/log them.
  • Comment on Re^3: Logging run-time warnings from an embedded perl interpreter

Replies are listed 'Best First'.
Re^4: Logging run-time warnings from an embedded perl interpreter
by Hercynium (Hermit) on Nov 19, 2007 at 19:21 UTC
    Thanks - I've never worked with trapping signals before, but I'll try now and report back what I can get out of it.