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

Log::Report::DBIC::Profiler - query profiler for DBIx::Class

Description

       This profile will log DBIx::Class queries via Log::Report to a selected back-end (via a dispatcher, see
       Log::Report::Dispatcher)

Inheritance

        Log::Report::DBIC::Profiler
          is a DBIx::Class::Storage::Statistics

License

       Copyrights 2007-2025 by [Mark Overmeer <markov@cpan.org>]. For other contributors see ChangeLog.

       This program is free software; you can redistribute it and/or modify it under the same terms as Perl
       itself.  See http://dev.perl.org/licenses/

perl v5.40.1                                       2025-04-20                   Log::Report::DBIC::Profiler(3pm)

Name

       Log::Report::DBIC::Profiler - query profiler for DBIx::Class

See Also

       This module is part of Log-Report distribution version 1.40, built on April 18, 2025. Website:
       http://perl.overmeer.net/CPAN/

Synopsis

         use Log::Report::DBIC::Profiler;
         $schema->storage->debugobj(Log::Report::DBIC::Profiler->new);
         $schema->storage->debug(1);

         # And maybe (if no exceptions expected from DBIC)
         $schema->exception_action(sub { panic @_ });

         # Log to syslog
         use Log::Report;
         dispatcher SYSLOG => 'myapp'
           , identity => 'myapp'
           , facility => 'local0'
           , flags    => "pid ndelay nowait"
           , mode     => 'DEBUG';

See Also