From e820d0b615c935c71aca70b5a9d89388de8230c0 Mon Sep 17 00:00:00 2001 From: Magnus Ahltorp Date: Tue, 21 Oct 2014 16:03:54 +0200 Subject: Added lager for logging --- README.md | 1 + ebin/catlfish.app | 2 +- reltool.config | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) 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"}]} ]}. -- cgit v1.1