summaryrefslogtreecommitdiff
path: root/src/rebar_app_utils.erl
diff options
context:
space:
mode:
authorDave Smith <dizzyd@dizzyd.com>2010-06-09 13:16:12 -0600
committerDave Smith <dizzyd@dizzyd.com>2010-06-09 13:16:12 -0600
commitdfb0d876582a088f5ac6091a839920f6cc01560f (patch)
tree7abb00526e701d2cc7c92e94691b99c0d56b79f5 /src/rebar_app_utils.erl
parent5ec89186365a25a5a08e44552c67e224f8c5c468 (diff)
Removing some unnecessary debugging messages
--HG-- extra : rebase_source : 05a045be5aed66ee292e6f5896ab6de71d4a2128
Diffstat (limited to 'src/rebar_app_utils.erl')
-rw-r--r--src/rebar_app_utils.erl2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rebar_app_utils.erl b/src/rebar_app_utils.erl
index 7794b5b..47b629e 100644
--- a/src/rebar_app_utils.erl
+++ b/src/rebar_app_utils.erl
@@ -48,13 +48,11 @@ is_app_dir(Dir) ->
AppSrc = filename:join(Dir, "src/*.app.src"),
case filelib:wildcard(AppSrc) of
[AppSrcFile] ->
- ?DEBUG("Found app.src: ~p\n", [AppSrcFile]),
{true, AppSrcFile};
_ ->
App = filename:join([Dir, "ebin/*.app"]),
case filelib:wildcard(App) of
[AppFile] ->
- ?DEBUG("Found .app: ~p\n", [AppFile]),
{true, AppFile};
_ ->
false