diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-08-23 18:54:05 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-08-23 18:54:05 +0200 |
commit | 1dcf0d15dcb0b6720a462424f7466220500606d0 (patch) | |
tree | 1b8c598de49d30e274e435e0308aeccb2cf628e8 | |
parent | 172bc8fb32ff5734fb9d106ce33ea966137f54d8 (diff) |
Log a more descriptive message
-rw-r--r-- | src/rebar_core.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl index e386c8a..75569b4 100644 --- a/src/rebar_core.erl +++ b/src/rebar_core.erl @@ -85,7 +85,8 @@ process_commands([Command | Rest], ParentConfig) -> case erlang:get(operations) of Operations -> %% This command didn't do anything - ?CONSOLE("Command '~p' not understood\n", [Command]); + ?CONSOLE("Command '~p' not understood or not applicable~n", + [Command]); _ -> ok end, |