You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/08/28 14:23:40 UTC

[30/33] rexi commit: updated refs/heads/master to bbf59a2

The couch_log functions are all two-arity


Project: http://git-wip-us.apache.org/repos/asf/couchdb-rexi/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-rexi/commit/77dd2bed
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-rexi/tree/77dd2bed
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-rexi/diff/77dd2bed

Branch: refs/heads/master
Commit: 77dd2bed7cadcfaa686a0008361d6e057839a515
Parents: 6ba8701
Author: Paul J. Davis <pa...@gmail.com>
Authored: Sun Aug 17 15:25:53 2014 -0500
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Sun Aug 17 15:25:53 2014 -0500

----------------------------------------------------------------------
 src/rexi_server.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-rexi/blob/77dd2bed/src/rexi_server.erl
----------------------------------------------------------------------
diff --git a/src/rexi_server.erl b/src/rexi_server.erl
index 5f9976d..f71f878 100644
--- a/src/rexi_server.erl
+++ b/src/rexi_server.erl
@@ -90,7 +90,7 @@ handle_cast({kill, FromRef}, #st{clients = Clients} = St) ->
     end;
 
 handle_cast(_, St) ->
-    couch_log:notice("rexi_server ignored_cast"),
+    couch_log:notice("rexi_server ignored_cast", []),
     {noreply, St}.
 
 handle_info({'DOWN', Ref, process, _, normal}, #st{workers=Workers} = St) ->