diff options
author | Tristan Sloughter <[email protected]> | 2015-11-19 10:23:20 -0600 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2015-11-19 10:23:20 -0600 |
commit | 811bb9a36e27dcdc72d7f7cfea85e726f7e16ab9 (patch) | |
tree | 3061afc7057fa5a812d64e1dba425a398588e1df /src/rlx_prv_relup.erl | |
parent | d6f42edec9bfa0bc9bda3834059888a2a8b03024 (diff) | |
download | relx-811bb9a36e27dcdc72d7f7cfea85e726f7e16ab9.tar.gz relx-811bb9a36e27dcdc72d7f7cfea85e726f7e16ab9.tar.bz2 relx-811bb9a36e27dcdc72d7f7cfea85e726f7e16ab9.zip |
relup successfully created message should be an info log not an error
Diffstat (limited to 'src/rlx_prv_relup.erl')
-rw-r--r-- | src/rlx_prv_relup.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rlx_prv_relup.erl b/src/rlx_prv_relup.erl index 0dbe8f9..ad30914 100644 --- a/src/rlx_prv_relup.erl +++ b/src/rlx_prv_relup.erl @@ -133,14 +133,14 @@ make_upfrom_script(State, Release, UpFrom) -> systools:make_relup(CurrentRel, [UpFromRel], [UpFromRel], CorrectOptions) end) of ok -> - ec_cmd_log:error(rlx_state:log(State), + ec_cmd_log:info(rlx_state:log(State), "relup from ~s to ~s successfully created!", [UpFromRel, CurrentRel]), {ok, State}; error -> ?RLX_ERROR({relup_script_generation_error, CurrentRel, UpFromRel}); {ok, RelUp, _, []} -> - ec_cmd_log:error(rlx_state:log(State), + ec_cmd_log:info(rlx_state:log(State), "relup successfully created!"), write_relup_file(State, Release, RelUp), {ok, State}; |