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/12 23:55:59 UTC

ddoc-cache commit: updated refs/heads/1843-feature-bigcouch to beddafa

Updated Branches:
  refs/heads/1843-feature-bigcouch bd245ace5 -> beddafa3c


Switch to couch_log


Project: http://git-wip-us.apache.org/repos/asf/couchdb-ddoc-cache/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-ddoc-cache/commit/beddafa3
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-ddoc-cache/tree/beddafa3
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-ddoc-cache/diff/beddafa3

Branch: refs/heads/1843-feature-bigcouch
Commit: beddafa3cf7545263a74d66e7834721abc166c3a
Parents: bd245ac
Author: Robert Newson <ro...@cloudant.com>
Authored: Wed Feb 12 20:12:28 2014 +0000
Committer: Robert Newson <ro...@cloudant.com>
Committed: Wed Feb 12 20:12:28 2014 +0000

----------------------------------------------------------------------
 src/ddoc_cache.app.src    | 2 +-
 src/ddoc_cache_opener.erl | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-ddoc-cache/blob/beddafa3/src/ddoc_cache.app.src
----------------------------------------------------------------------
diff --git a/src/ddoc_cache.app.src b/src/ddoc_cache.app.src
index a183dbd..55a108f 100644
--- a/src/ddoc_cache.app.src
+++ b/src/ddoc_cache.app.src
@@ -31,7 +31,7 @@
         ets_lru,
         mem3,
         fabric,
-        twig
+        couch_log
     ]},
     {mod, {ddoc_cache_app, []}},
     {env, [

http://git-wip-us.apache.org/repos/asf/couchdb-ddoc-cache/blob/beddafa3/src/ddoc_cache_opener.erl
----------------------------------------------------------------------
diff --git a/src/ddoc_cache_opener.erl b/src/ddoc_cache_opener.erl
index 68b9127..87375e2 100644
--- a/src/ddoc_cache_opener.erl
+++ b/src/ddoc_cache_opener.erl
@@ -126,7 +126,7 @@ handle_cast(Msg, St) ->
 
 
 handle_info({'EXIT', Pid, Reason}, #st{evictor=Pid}=St) ->
-    twig:log(err, "ddoc_cache_opener evictor died ~w", [Reason]),
+    couch_log:log(err, "ddoc_cache_opener evictor died ~w", [Reason]),
     {ok, Evictor} = couch_db_update_notifier:start_link(fun ?MODULE:evictor/1),
     {noreply, St#st{evictor=Evictor}};