瀏覽代碼

Adventures in org mode

pull/4/head
Andrew Thompson 14 年之前
父節點
當前提交
d4b06a048d
共有 1 個檔案被更改,包括 8 行新增0 行删除
  1. +8
    -0
      README.org

+ 8
- 0
README.org 查看文件

@ -18,21 +18,29 @@
some other way of including it in erlang's path. You can then add the
following option to the erlang compiler flags
#+BEGIN_EXAMPLE
{parse_transform, lager_transform}
#+END_EXAMPLE
Alternately, you can add it to the module you which to compile with logging
enabled:
#+BEGIN_EXAMPLE
-compile([{parse_transform, lager_transform}]).
#+END_EXAMPLE
Once you have built your code with lager, you can then generate log messages
by doing the following:
#+BEGIN_EXAMPLE
lager:error("Some message")
#+END_EXAMPLE
Or:
#+BEGIN_EXAMPLE
lager:warning("Some message with a term: ~p", [Term])
#+END_EXAMPLE
The general form is lager:Severity() where Severity is one of the log levels
mentioned above.

Loading…
取消
儲存