X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-DeploymentHandler.git;a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FDeploymentHandler%2FVersionStorage%2FStandard.pm;h=2e699ba9ff0300160e8ea40b9ae4e4c470913405;hp=cc79c4f85c13355cc1ff233d22aad035a54aced3;hb=97aa9a748e07c9e5875d56bd7d6554e481911c5d;hpb=c4f51462ef3831ad5e95b53de672a853014576dc diff --git a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm index cc79c4f..2e699ba 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm @@ -1,18 +1,13 @@ package DBIx::Class::DeploymentHandler::VersionStorage::Standard; + use Moose; -use DBIx::Class::DeploymentHandler::Logger; -use Log::Contextual ':log', -package_logger => - DBIx::Class::DeploymentHandler::Logger->new({ - env_prefix => 'DBICDH' - }); +use DBIx::Class::DeploymentHandler::LogImporter ':log'; # ABSTRACT: Version storage that does the normal stuff -use Method::Signatures::Simple; use DBIx::Class::DeploymentHandler::VersionStorage::Standard::VersionResult; has schema => ( - isa => 'DBIx::Class::Schema', is => 'ro', required => 1, ); @@ -54,3 +49,8 @@ __PACKAGE__->meta->make_immutable; __END__ +=head1 SEE ALSO + +This class is an implementation of +L. Pretty much all the +documentation is there.