aboutsummaryrefslogtreecommitdiffstats
path: root/src/rlx_prv_relup.erl
diff options
context:
space:
mode:
authorJordan Wilberding <[email protected]>2015-11-19 09:17:56 -0800
committerJordan Wilberding <[email protected]>2015-11-19 09:17:56 -0800
commit32b1831e15d6a02e9e233df48e5948b0c7228fbd (patch)
tree665b74ccca92483f17dfa152afb1be46bb7da3f8 /src/rlx_prv_relup.erl
parentab4d411358c30e047eccdaf1f70ff347239ee574 (diff)
parent8ae76495300474eaa87c22bcc254cf35245a9177 (diff)
downloadrelx-32b1831e15d6a02e9e233df48e5948b0c7228fbd.tar.gz
relx-32b1831e15d6a02e9e233df48e5948b0c7228fbd.tar.bz2
relx-32b1831e15d6a02e9e233df48e5948b0c7228fbd.zip
Merge pull request #413 from tsloughter/neotoma_hidden
Update neotoma and have remote shell nodes be hidden
Diffstat (limited to 'src/rlx_prv_relup.erl')
-rw-r--r--src/rlx_prv_relup.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rlx_prv_relup.erl b/src/rlx_prv_relup.erl
index 0dbe8f9..9ac2135 100644
--- a/src/rlx_prv_relup.erl
+++ b/src/rlx_prv_relup.erl
@@ -133,16 +133,16 @@ 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),
- "relup successfully created!"),
write_relup_file(State, Release, RelUp),
+ ec_cmd_log:info(rlx_state:log(State),
+ "relup successfully created!"),
{ok, State};
{ok,_, Module,Warnings} ->
?RLX_ERROR({relup_script_generation_warn, Module, Warnings});