Browse Source

Merge pull request #814 from tsloughter/cmd_seq

add DEBUG statement of the command sequence that'll be run
pull/838/head
Fred Hebert 9 years ago
parent
commit
4d76a556e2
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      src/rebar_core.erl

+ 1
- 0
src/rebar_core.erl View File

@ -68,6 +68,7 @@ process_command(State, Command) ->
Namespace = rebar_state:namespace(State), Namespace = rebar_state:namespace(State),
TargetProviders = providers:get_target_providers(Command, Providers, Namespace), TargetProviders = providers:get_target_providers(Command, Providers, Namespace),
CommandProvider = providers:get_provider(Command, Providers, Namespace), CommandProvider = providers:get_provider(Command, Providers, Namespace),
?DEBUG("Expanded command sequence to be run: ~p", [TargetProviders]),
case CommandProvider of case CommandProvider of
not_found when Command =/= do -> not_found when Command =/= do ->
case Namespace of case Namespace of

Loading…
Cancel
Save