diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-01-29 17:55:30 +0100 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-01-29 17:55:30 +0100 |
commit | 440fa6bd319663cd50040581b3ad98bf9b5a0a23 (patch) | |
tree | a09e0b98982135316dfead1b9d230e8ae844170f | |
parent | 194f3caa3fc1c9454ac62da7ebc096704ecf1686 (diff) |
Only print sh/2 options on debug log level
-rw-r--r-- | src/rebar_utils.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_utils.erl b/src/rebar_utils.erl index f6e3a02..72e6efa 100644 --- a/src/rebar_utils.erl +++ b/src/rebar_utils.erl @@ -88,8 +88,8 @@ wordsize() -> %% Val = string() | false %% sh(Command0, Options0) -> - ?INFO("sh info:\n\tcwd: ~p\n\tcmd: ~s\n\topts: ~p\n", - [get_cwd(), Command0, Options0]), + ?INFO("sh info:\n\tcwd: ~p\n\tcmd: ~s\n", [get_cwd(), Command0]), + ?DEBUG("\topts: ~p\n", [Options0]), DefaultOptions = [use_stdout, abort_on_error], Options = [expand_sh_flag(V) |