Merge pull request #882 from varnerac/remove_gen_logger

Remove gen_logger references
This commit is contained in:
Feng Lee 2017-01-24 11:22:54 +08:00 committed by GitHub
commit ed05521725
3 changed files with 6 additions and 4 deletions

View File

@ -2,12 +2,11 @@ PROJECT = emqttd
PROJECT_DESCRIPTION = Erlang MQTT Broker PROJECT_DESCRIPTION = Erlang MQTT Broker
PROJECT_VERSION = 2.0.7 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_gproc = git https://github.com/uwiger/gproc
dep_getopt = git https://github.com/jcomellas/getopt v0.8.2 dep_getopt = git https://github.com/jcomellas/getopt v0.8.2
dep_lager = git https://github.com/basho/lager master 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_esockd = git https://github.com/emqtt/esockd master
dep_mochiweb = git https://github.com/emqtt/mochiweb dep_mochiweb = git https://github.com/emqtt/mochiweb

View File

@ -1,4 +1,7 @@
{deps, [ {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}]}. {erl_opts, [{parse_transform,lager_transform}]}.

View File

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