You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/02/13 04:25:55 UTC

[4/5] couch commit: updated refs/heads/1994-merge-rcouch to 3f51842

couch_log: be less invasive when using parse_transform

Noticed when running tests vi travis-ci, jiffy doesn't like too much
lager and the build hangs. So instead to compile all modules with the
parse transform, only do it for couch_log. This is the only place where
we really need it anyway.


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

Branch: refs/heads/1994-merge-rcouch
Commit: 10e26f054a3e231a852e2e100a2e0588a98b5b8c
Parents: 95e2f20
Author: benoitc <bc...@gmail.com>
Authored: Wed Feb 12 00:38:27 2014 +0100
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Wed Feb 12 21:24:08 2014 -0600

----------------------------------------------------------------------
 src/couch_log.erl | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/10e26f05/src/couch_log.erl
----------------------------------------------------------------------
diff --git a/src/couch_log.erl b/src/couch_log.erl
index 6cf04f4..82158f6 100644
--- a/src/couch_log.erl
+++ b/src/couch_log.erl
@@ -14,6 +14,8 @@
 
 -behaviour(gen_server).
 
+-compile([{parse_transform, lager_transform}]).
+
 % public API
 -export([start_link/0, stop/0]).
 -export([debug/2, info/2, warn/2, error/2]).