package Mojolicious::Plugin::StaticLog; use Mojo::Base 'Mojolicious::Plugin'; our $VERSION = '0.02'; sub register { my ($self, $app, $conf) = @_; my $level = $conf->{level} || 'debug'; die "$level: unsupported log-level" unless $level =~ /^(debug|info|warn|error|fatal)$/; $app->hook( after_static => sub { my $c = shift; my $log = $c->app->log; my $is_level = "is_$level"; return unless $log->$is_level; my $path = $c->req->url->path; my $size = sprintf '%6s', $c->res->content->body_size; my $code = $c->res->code; $log->$level("Static $code $size $path"); }); return; } 1; __END__ =encoding utf8 =head1 NAME Mojolicious::Plugin::StaticLog - Show Static response details in the log =head1 SYNOPSIS # Mojolicious $app->plugin('StaticLog'); # or $app->plugin( StaticLog => {level=>'info'} ); # Mojolicious::Lite plugin 'StaticLog'; # now, in a log file near you.. The lines marked "Static" are new. e.g.. [Thu Feb 18 13:56:09 2016] [debug] GET "/dyngrp/11/pvscat" [Thu Feb 18 13:56:09 2016] [debug] Routing to controller "Stuff::Controller::Oauth2" and action "ok" [Thu Feb 18 13:56:09 2016] [debug] Routing to controller "Stuff::Controller::Pvscat" and action "page" [Thu Feb 18 13:56:09 2016] [debug] Rendering cached template "pvscat/page.html.ep" [Thu Feb 18 13:56:09 2016] [debug] Rendering cached template "layouts/default.html.ep" [Thu Feb 18 13:56:09 2016] [debug] 200 OK (0.011028s, 90.678/s) [Thu Feb 18 13:56:09 2016] [debug] Static 304 0 /css/stuff.css [Thu Feb 18 13:56:09 2016] [debug] Static 200 19157 /js/stuff.js [Thu Feb 18 13:56:09 2016] [debug] Static 304 0 /js/dyngrps.js [Thu Feb 18 13:56:09 2016] [debug] Static 304 0 /img/searching.gif [Thu Feb 18 13:56:09 2016] [debug] Static 304 0 /img/octalfutures.png [Thu Feb 18 13:56:09 2016] [debug] GET "/dyngrp/11/pvscat.json" =head1 DESCRIPTION L is a L plugin which will log the http code, file name and size when rendering static files. By default logs in debug level only. Will respond to dynamically changed log levels and will honour "MOJO_LOG_LEVEL" if present. =head1 REASON L includes a static file server L which does some very clever things, silently. With this Plugin you can trace which static files your app is serving and you will also easily identify when the browser is getting a fresh version of your static resource e.g. C and when it's getting a zero-content "Not Modified" response e.g. C. =head1 METHODS L inherits all methods from L and implements the following new ones. =head2 register $plugin->register($app) or $plugin->register($app, {level => $level}) # where $level =~ /debug|info|warn|error|fatal/ Adds an appropriate after_static hook for loggin static file responses. =head1 REPOSITORY Open-Sourced at Github: L. =head1 COPYRIGHT AND LICENSE Copyright (C) 2016, Frank Carnovale This program is free software, you can redistribute it and/or modify it under the terms of the Artistic License version 2.0. =head1 SEE ALSO L, L, L, L, L. =cut