Author: kclark
Date: Tue Jun 17 18:20:02 2008
New Revision: 669037

URL: http://svn.apache.org/viewvc?rev=669037&view=rev
Log:
rb: Add debug logger message for processing frames

Modified:
    incubator/thrift/trunk/lib/rb/lib/thrift/server/nonblockingserver.rb

Modified: incubator/thrift/trunk/lib/rb/lib/thrift/server/nonblockingserver.rb
URL: 
http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/rb/lib/thrift/server/nonblockingserver.rb?rev=669037&r1=669036&r2=669037&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/rb/lib/thrift/server/nonblockingserver.rb 
(original)
+++ incubator/thrift/trunk/lib/rb/lib/thrift/server/nonblockingserver.rb Tue 
Jun 17 18:20:02 2008
@@ -139,6 +139,7 @@
         @buffers[fd] << fd.readpartial(1048576)
         frame = slice_frame!(@buffers[fd])
         if frame
+          @logger.debug "#{self} is processing a frame"
           @worker_queue.push [:frame, fd, frame]
         end
       end


Reply via email to