You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2020/04/22 23:08:50 UTC

[couchdb] branch 3.0.x updated: fix: use correct logging module name, fixes #2797 (#2798) (#2812)

This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch 3.0.x
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/3.0.x by this push:
     new b88d992  fix: use correct logging module name, fixes #2797 (#2798) (#2812)
b88d992 is described below

commit b88d9924520ecb34f8f885899e8e70d68a182a77
Author: Joan Touzet <wo...@users.noreply.github.com>
AuthorDate: Wed Apr 22 19:08:40 2020 -0400

    fix: use correct logging module name, fixes #2797 (#2798) (#2812)
    
    Co-authored-by: Joan Touzet <wo...@users.noreply.github.com>
    
    Co-authored-by: Jan Lehnardt <ja...@apache.org>
---
 src/setup/src/setup.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/setup/src/setup.erl b/src/setup/src/setup.erl
index 3d23229..4867f60 100644
--- a/src/setup/src/setup.erl
+++ b/src/setup/src/setup.erl
@@ -262,7 +262,7 @@ sync_config(Section, Key, Value) ->
         ok ->
             ok;
         error ->
-            log:error("~p sync_admin results ~p errors ~p",
+            couch_log:error("~p sync_admin results ~p errors ~p",
                 [?MODULE, Results, Errors]),
             Reason = "Cluster setup unable to sync admin passwords",
             throw({setup_error, Reason})