logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Plack::Middleware::Debug::TrackObjects - Track Objects panel

Description

       This debug panel captures objects created in a request cycle by using Devel::TrackObjects. You can run
       your applications multiple times (i.e. refreshing the page) to see if the count of tracked objects
       increases, in which case there are leaked objects.

Name

       Plack::Middleware::Debug::TrackObjects - Track Objects panel

See Also

       Plack::Middleware::Debug Devel::TrackObjects

perl v5.36.0                                       2022-10-14             Plack::Middlewa...g::TrackObjects(3pm)

Synopsis

         enable "Debug";
         enable "Debug::TrackObjects";

       And when you load the application with plackup or other launcher:

         # track everything
         plackup -MDevel::TrackObjects=/^/ myapp.psgi

       You can specify the namespace with a regular expression. See Devel::TrackObjects for details.

See Also