Fix set_level/1
Project: http://git-wip-us.apache.org/repos/asf/couchdb-twig/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-twig/commit/8e07af36 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-twig/tree/8e07af36 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-twig/diff/8e07af36 Branch: refs/heads/import Commit: 8e07af36b1896fb18e96d8342f29e0f668a543df Parents: 827b13b Author: Adam Kocoloski <[email protected]> Authored: Thu Mar 10 11:43:11 2011 -0500 Committer: Adam Kocoloski <[email protected]> Committed: Thu Mar 10 11:43:11 2011 -0500 ---------------------------------------------------------------------- src/twig.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-twig/blob/8e07af36/src/twig.erl ---------------------------------------------------------------------- diff --git a/src/twig.erl b/src/twig.erl index 4e4919c..6a24e6b 100644 --- a/src/twig.erl +++ b/src/twig.erl @@ -19,7 +19,7 @@ -include("twig_int.hrl"). set_level(LevelAtom) -> - application:set_env(twig, {level, twig_util:level(LevelAtom)}). + application:set_env(twig, level, twig_util:level(LevelAtom)). log(LevelAtom, String) -> log(LevelAtom, String, [], []).
