=head1 NAME Mojolicious::Plugin::ConsoleLogger =head1 DESCRIPTION Browser console logging for webkit dev tools/firebug =head1 USAGE use Mojolicious::Lite; plugin 'console_logger'; get '/' => sub { app->log->debug("Here I am!"); app->log->error("This is bad"); app->log->fatal("This is really bad"); app->log->info("This isn't bad at all"); shift->render(text => 'Ahm in ur browzers, logginz ur console'); }; app->start; =head1 METHODS L inherits all methods from L and implements the following new ones. =head2 C $plugin->register; Register condition in L application. =head1 SEE ALSO L =head1 DEVELOPMENT L =head1 VERSION 0.01 =head1 CREDITS Implementation stolen from L =head1 AUTHOR Glen Hinkle tempire@cpan.org =cut