summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Raymond <jeraymond@gmail.com>2010-05-11 12:22:12 -0400
committerJeremy Raymond <jeraymond@gmail.com>2010-05-11 12:22:12 -0400
commit8e195e53373d0095b713f4c9519125ed7bca3a51 (patch)
tree112a24ab291f1952779a456229ce8e9d3c3ed9de /src
parent2af6dc84aebe9fb5d685f36a5a952476e0f357eb (diff)
Make 'command does not apply' warning into a warning
Diffstat (limited to 'src')
-rw-r--r--src/rebar_core.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl
index e021fc1..b6c5283 100644
--- a/src/rebar_core.erl
+++ b/src/rebar_core.erl
@@ -331,7 +331,7 @@ apply_commands([], _Modules, _Config, _ModuleFile) ->
apply_commands([Command | Rest], Modules, Config, ModuleFile) ->
case select_modules(Modules, Command, []) of
[] ->
- ?CONSOLE("WARNING: '~p' command does not apply to directory ~s\n",
+ ?WARN("'~p' command does not apply to directory ~s\n",
[Command, rebar_utils:get_cwd()]),
apply_commands(Rest, Modules, Config, ModuleFile);
TargetModules ->