This is an automated email from the ASF dual-hosted git repository. jan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 42aba99bba3b026ff82a87213cef685f113fbada Author: Jan Lehnardt <j...@apache.org> AuthorDate: Mon Mar 5 16:15:51 2018 +0100 feat: demote view index opening/closing to log level debug --- src/couch_index/src/couch_index.erl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/couch_index/src/couch_index.erl b/src/couch_index/src/couch_index.erl index b3a800f..8fba0a2 100644 --- a/src/couch_index/src/couch_index.erl +++ b/src/couch_index/src/couch_index.erl @@ -104,7 +104,7 @@ init({Mod, IdxState}) -> Mod:get(idx_name, IdxState), couch_index_util:hexsig(Mod:get(signature, IdxState)) ], - couch_log:info("Opening index for db: ~s idx: ~s sig: ~p", Args), + couch_log:debug("Opening index for db: ~s idx: ~s sig: ~p", Args), proc_lib:init_ack({ok, self()}), gen_server:enter_loop(?MODULE, [], State); Other -> @@ -131,7 +131,7 @@ terminate(Reason0, State) -> couch_index_util:hexsig(Mod:get(signature, IdxState)), Reason ], - couch_log:info("Closing index for db: ~s idx: ~s sig: ~p because ~r", Args), + couch_log:debug("Closing index for db: ~s idx: ~s sig: ~p because ~r", Args), ok. @@ -366,7 +366,7 @@ handle_info(maybe_close, State) -> end; handle_info({'DOWN', _, _, _Pid, _}, #st{mod=Mod, idx_state=IdxState}=State) -> Args = [Mod:get(db_name, IdxState), Mod:get(idx_name, IdxState)], - couch_log:info("Index shutdown by monitor notice for db: ~s idx: ~s", Args), + couch_log:debug("Index shutdown by monitor notice for db: ~s idx: ~s", Args), catch send_all(State#st.waiters, shutdown), {stop, normal, State#st{waiters=[]}}. -- To stop receiving notification emails like this one, please contact j...@apache.org.