# $Id: /mirror/gungho/lib/Gungho/Handler/Null.pm 3234 2007-10-13T15:12:58.068532Z lestrrat $ # # Copyright (c) 2007 Daisuke Maki # All rights reserved. package Gungho::Handler::Null; use strict; use warnings; use base qw(Gungho::Handler); sub handle_response { my $self = shift; my $c = shift; my $req = shift; my $res = shift; $c->log->info($req->uri . " responded with code " . $res->code); $self->next::method($c, $res); } 1; =head1 NAME Gungho::Handler::Null - A Handler That Does Nothing =head1 METHODS =head2 handle_response Prints out the URI that just got fetched and its status code =cut