Changes command logging from debug to info

This commit is contained in:
Spencer Gibb
2019-06-28 16:51:27 -04:00
parent af893cbd52
commit 5d23188ecb

View File

@@ -285,7 +285,7 @@ class ProcessExecutor implements ReleaserPropertiesAware {
void runCommand(String[] commands, long waitTimeInMinutes) {
try {
String workingDir = this.workingDir;
log.debug(
log.info(
"Will run the command from [{}] via {} and wait for result for [{}] minutes",
workingDir, commands, waitTimeInMinutes);
ProcessBuilder builder = builder(commands, workingDir);