From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
sub debug :Local {
my ( $self, $c ) = @_;
$c->log->debug('debug');
$c->res->body( 'logged' );
}
1;