From: Chris Andrews Date: Fri, 15 May 2009 20:20:39 +0000 (+0100) Subject: Remove some noisy debug X-Git-Tag: 0.03~12 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Engine-STOMP.git;a=commitdiff_plain;h=076725008d39a1947aa2ec4f7220ae8459b9b1cc Remove some noisy debug --- 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