X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Engine-STOMP.git;a=blobdiff_plain;f=lib%2FCatalyst%2FEngine%2FStomp.pm;h=e6580f6a4dd6e57bc3b27d4ad05638181d1d12a5;hp=12238a4ec85b6437dababfb23ed25e61b00cef06;hb=076725008d39a1947aa2ec4f7220ae8459b9b1cc;hpb=0b4072612b7772a71fca86afec9487792a12000e diff --git a/lib/Catalyst/Engine/Stomp.pm b/lib/Catalyst/Engine/Stomp.pm index 12238a4..e6580f6 100644 --- a/lib/Catalyst/Engine/Stomp.pm +++ b/lib/Catalyst/Engine/Stomp.pm @@ -156,8 +156,6 @@ sub handle_stomp_frame { my ($self, $app, $frame) = @_; my $command = $frame->command(); - $app->log->debug("Got STOMP command: $command"); - if ($command eq 'MESSAGE') { $self->handle_stomp_message($app, $frame); } @@ -195,7 +193,6 @@ sub handle_stomp_message { # reply my $reply_queue = '/remote-temp-queue/' . ($response->headers->header('X-Reply-Address')); - $app->log->debug("replying to $reply_queue\n"); $self->connection->send({ destination => $reply_queue, body => $response->content }); # ack the message off the queue now we've replied