package DBIx::Class::Storage::DBI::Replicated::Replicant;
use Moose::Role;
+requires qw/_query_start/;
=head1 NAME
$self->$method("DSN: $dsn SQL: $sql", @bind);
};
+=head2 debugobj
+
+Override the debugobj method to redirect this method call back to the master.
+
+=cut
+
+sub debugobj {
+ return shift->schema->storage->debugobj;
+}
+
=head1 AUTHOR
John Napiorkowski <john.napiorkowski@takkle.com>