=head1 NAME Catalyst::TraitFor::Model::DBIC::Schema::QueryLog::AdoptPlack - Use a Plack Middleware QueryLog =head2 SYNOPSIS package MyApp::Web::Model::Schema; use parent 'Catalyst::Model::DBIC::Schema'; __PACKAGE__->config({ schema_class => 'MyApp::Schema', traits => ['QueryLog::AdoptPlack'], ## .. rest of configuration }); =head1 DESCRIPTION This is a trait for L which adopts a L created L and logs SQL for a given request cycle. It is intended to be compatible with L which you may already be using. It picks up the querylog from C<< $env->{'plack.middleware.debug.dbic.querylog'} >> which is generally provided by the L middleware L In fact you will probably use these two modules together. Please see the documentation in L for an example. =head1 OPTIONS This model defines the following options. =head2 querylog Takes a L object, which is used as the querylog for the application. Generally the whole point of this trait is to adopt the query log provided by the L middleware, but if you have special needs you can set an instance here. You may wish to do this if you have complicated instatiation needs. =head2 querylog_args Takes a HashRef which is passed to L at construction, if needed. =head1 SEE ALSO L, L, L, L =head1 ACKNOWLEGEMENTS This code is basically copied from L and the author owes a debt of gratitude for the original authors. =head1 AUTHOR John Napiorkowski, C<< >> =head1 COPYRIGHT & LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut