in reply to Re: Re: Re: Monitor file require/use
in thread Monitor file require/use

If you want to debug a CGI, look at Devel::ptkdb, which will open a Tk debugger for you. You can set breakpoints on specific lines as needed, possibly with conditions.

Beyond that, note that "scripts" don't call modules. They require or use modules (which is what my debugger script catches); they call subroutines/methods that were defined by the modules.

  • Comment on Re: Re: Re: Re: Monitor file require/use