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/02/13 00:24:18 UTC

couch-index commit: updated refs/heads/1843-feature-bigcouch to 2b6ccb0

Updated Branches:
  refs/heads/1843-feature-bigcouch 2c2c95b55 -> 2b6ccb0bc


Change API to function per level


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

Branch: refs/heads/1843-feature-bigcouch
Commit: 2b6ccb0bc316dbce12e2f153c12e1fa02e94c74d
Parents: 2c2c95b
Author: Robert Newson <rn...@apache.org>
Authored: Wed Feb 12 23:24:08 2014 +0000
Committer: Robert Newson <rn...@apache.org>
Committed: Wed Feb 12 23:24:08 2014 +0000

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


http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/blob/2b6ccb0b/src/couch_index_server.erl
----------------------------------------------------------------------
diff --git a/src/couch_index_server.erl b/src/couch_index_server.erl
index 47d4a1a..d83c22a 100644
--- a/src/couch_index_server.erl
+++ b/src/couch_index_server.erl
@@ -186,7 +186,7 @@ handle_info({'EXIT', Pid, Reason}, Server) ->
     end,
     {noreply, Server};
 handle_info(Msg, State) ->
-    couch_log:log(warn, "~p did not expect ~p", [?MODULE, Msg]),
+    couch_log:warning("~p did not expect ~p", [?MODULE, Msg]),
     {noreply, State}.