Remove gen_logger references

This commit is contained in:
Drew Varner 2017-01-23 20:02:02 -05:00
parent 153ed22da5
commit 8e60b8f00a
3 changed files with 6 additions and 4 deletions

View File

@ -2,12 +2,11 @@ PROJECT = emqttd
PROJECT_DESCRIPTION = Erlang MQTT Broker
PROJECT_VERSION = 2.0.7
DEPS = gproc lager gen_logger esockd mochiweb
DEPS = gproc lager esockd mochiweb
dep_gproc = git https://github.com/uwiger/gproc
dep_getopt = git https://github.com/jcomellas/getopt v0.8.2
dep_lager = git https://github.com/basho/lager master
dep_gen_logger = git https://github.com/emqtt/gen_logger
dep_esockd = git https://github.com/emqtt/esockd master
dep_mochiweb = git https://github.com/emqtt/mochiweb

View File

@ -1,4 +1,7 @@
{deps, [
{gproc,".*",{git,"https://github.com/uwiger/gproc",""}},{lager,".*",{git,"https://github.com/basho/lager","master"}},{gen_logger,".*",{git,"https://github.com/emqtt/gen_logger",""}},{esockd,".*",{git,"https://github.com/emqtt/esockd","master"}},{mochiweb,".*",{git,"https://github.com/emqtt/mochiweb",""}}
{gproc,".*",{git,"https://github.com/uwiger/gproc",""}},
{lager,".*",{git,"https://github.com/basho/lager","master"}},
{esockd,".*",{git,"https://github.com/emqtt/esockd","master"}},
{mochiweb,".*",{git,"https://github.com/emqtt/mochiweb",""}}
]}.
{erl_opts, [{parse_transform,lager_transform}]}.

View File

@ -58,6 +58,6 @@ ignore_lib_apps(Apps) ->
snmp, otp_mibs, public_key, asn1, ssh, hipe,
common_test, observer, webtool, xmerl, tools,
test_server, compiler, debugger, eunit, et,
gen_logger, wx],
wx],
[App || App = {Name, _, _} <- Apps, not lists:member(Name, LibApps)].