From: John Napiorkowski Date: Wed, 22 May 2013 20:55:08 +0000 (-0400) Subject: slightly more logging when we want to manually control the io X-Git-Tag: 5.90040~3^2~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=74bebe95e90dced3f66a19a9535a2cf19c3df0ff slightly more logging when we want to manually control the io --- diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index bc92f5f..55845cd 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -1796,7 +1796,10 @@ sub finalize { # Support skipping finalize for psgix.io style 'jailbreak'. Used to support # stuff like cometd and websockets - return if $c->request->has_io_fh; + if($c->request->has_io_fh) { + $c->log_response; + return; + } # Allow engine to handle finalize flow (for POE) my $engine = $c->engine;