You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by dr...@apache.org on 2008/06/11 03:00:12 UTC

svn commit: r666434 - in /incubator/thrift/trunk/lib/alterl/src: thrift_buffered_transport.erl thrift_socket_server.erl

Author: dreiss
Date: Tue Jun 10 18:00:12 2008
New Revision: 666434

URL: http://svn.apache.org/viewvc?rev=666434&view=rev
Log:
removing two more debug messages

Modified:
    incubator/thrift/trunk/lib/alterl/src/thrift_buffered_transport.erl
    incubator/thrift/trunk/lib/alterl/src/thrift_socket_server.erl

Modified: incubator/thrift/trunk/lib/alterl/src/thrift_buffered_transport.erl
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/alterl/src/thrift_buffered_transport.erl?rev=666434&r1=666433&r2=666434&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/alterl/src/thrift_buffered_transport.erl (original)
+++ incubator/thrift/trunk/lib/alterl/src/thrift_buffered_transport.erl Tue Jun 10 18:00:12 2008
@@ -41,7 +41,7 @@
 new(WrappedTransport) ->
     case gen_server:start_link(?MODULE, [WrappedTransport], []) of
         {ok, Pid} ->
-            io:format("buffered transport ~p wrapping ~p", [Pid, WrappedTransport]),
+%%             io:format("buffered transport ~p wrapping ~p", [Pid, WrappedTransport]),
             thrift_transport:new(?MODULE, Pid);
         Else ->
             Else

Modified: incubator/thrift/trunk/lib/alterl/src/thrift_socket_server.erl
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/alterl/src/thrift_socket_server.erl?rev=666434&r1=666433&r2=666434&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/alterl/src/thrift_socket_server.erl (original)
+++ incubator/thrift/trunk/lib/alterl/src/thrift_socket_server.erl Tue Jun 10 18:00:12 2008
@@ -155,7 +155,7 @@
 new_acceptor(State=#thrift_socket_server{acceptor=OldPid, listen=Listen,service=Service, handler=Handler}) ->
     Pid = proc_lib:spawn_link(?MODULE, acceptor_loop,
                               [{self(), Listen, Service, Handler}]),
-    error_logger:info_msg("Spawning new acceptor: ~p => ~p", [OldPid, Pid]),
+%%     error_logger:info_msg("Spawning new acceptor: ~p => ~p", [OldPid, Pid]),
     State#thrift_socket_server{acceptor=Pid}.
 
 acceptor_loop({Server, Listen, Service, Handler})