You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/02/10 21:22:44 UTC

[22/50] couch commit: updated refs/heads/import to 09c6556

Remove message when adding async open listeners

This log message isn't particularly useful.


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch/commit/8c561b49
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/8c561b49
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/8c561b49

Branch: refs/heads/import
Commit: 8c561b49e02615d0b7af443c59f74fa2d9b92104
Parents: 4b7044a
Author: Paul J. Davis <pa...@gmail.com>
Authored: Sun Feb 10 15:04:02 2013 -0600
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Tue Feb 4 17:03:24 2014 -0600

----------------------------------------------------------------------
 src/couch_server.erl | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/8c561b49/src/couch_server.erl
----------------------------------------------------------------------
diff --git a/src/couch_server.erl b/src/couch_server.erl
index 1c74456..9f8380e 100644
--- a/src/couch_server.erl
+++ b/src/couch_server.erl
@@ -348,7 +348,6 @@ handle_call({open, DbName, Options}, From, Server) ->
         end;
     [#db{compactor_pid = Froms} = Db] when is_list(Froms) ->
         % icky hack of field values - compactor_pid used to store clients
-        ?LOG_INFO("adding another listener to async open for ~s", [DbName]),
         true = ets:insert(couch_dbs, Db#db{compactor_pid = [From|Froms]}),
         {noreply, Server};
     [#db{} = Db] ->