summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--ebin/catlfish.app2
-rw-r--r--reltool.config2
3 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index ca13457..514e87f 100644
--- a/README.md
+++ b/README.md
@@ -12,6 +12,7 @@ catlfish is a Certificate Transparency log server (RFC 6962).
A compiled plop application in ../plop
A compiled https://github.com/davisp/jiffy (for JSON encoding and decoding) in ../jiffy
+A compiled https://github.com/basho/lager (for logging) in ../lager
# Start
diff --git a/ebin/catlfish.app b/ebin/catlfish.app
index 8cbe5f7..44c9e0f 100644
--- a/ebin/catlfish.app
+++ b/ebin/catlfish.app
@@ -8,5 +8,5 @@
[{description, "catlfish -- Certificate Transparency Log Server"},
{vsn, "0.2.0-dev"},
{modules, [v1, catlfish_app]},
- {applications, [kernel, stdlib, plop, inets, jiffy]},
+ {applications, [kernel, stdlib, plop, inets, jiffy, lager]},
{mod, {catlfish_app, []}}]}.
diff --git a/reltool.config b/reltool.config
index 80b374d..6f9d52a 100644
--- a/reltool.config
+++ b/reltool.config
@@ -13,5 +13,7 @@
{excl_archive_filters, ["^include$","^priv$","^\\.git$"]},
{app, catlfish, [{app_file, all}, {lib_dir, "."}]},
{app, plop, [{app_file, all}, {lib_dir, "../plop"}]},
+ {app, lager, [{app_file, all}, {lib_dir, "../lager"}]},
+ {app, goldrush, [{app_file, all}, {lib_dir, "../lager/deps/goldrush"}]},
{app, jiffy, [{app_file, all}, {lib_dir, "../jiffy"}]}
]}.