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:01:06 UTC

svn commit: r666442 - /incubator/thrift/trunk/lib/alterl/src/thrift_socket_server.erl

Author: dreiss
Date: Tue Jun 10 18:01:06 2008
New Revision: 666442

URL: http://svn.apache.org/viewvc?rev=666442&view=rev
Log:
removing more debug_rlogs

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

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=666442&r1=666441&r2=666442&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:01:06 2008
@@ -32,7 +32,6 @@
         }).
 
 start(State=#thrift_socket_server{}) ->
-    io:format("~p~n", [State]),
     start_server(State);
 start(Options) ->
     start(parse_options(Options)).
@@ -96,7 +95,6 @@
     parse_options(Rest, State#thrift_socket_server{max=MaxInt}).
 
 start_server(State=#thrift_socket_server{name=Name}) ->
-    io:format("starting~n"),
     case Name of
 	undefined ->
 	    gen_server:start_link(?MODULE, State, []);