diff --git a/src/main/java/io/hyperfoil/tools/qdup/Run.java b/src/main/java/io/hyperfoil/tools/qdup/Run.java index 2950446b..e353a5fa 100644 --- a/src/main/java/io/hyperfoil/tools/qdup/Run.java +++ b/src/main/java/io/hyperfoil/tools/qdup/Run.java @@ -881,7 +881,7 @@ private boolean queueRunScripts(){ getDispatcher().addScriptContext(scriptContext); boolean rtrn = shell.isOpen(); timer.start("waiting for start"); - stateLogger.info("shell name={} return ok"); + stateLogger.info("shell name={} return ok", name); return rtrn; } else { stateLogger.error("run failed to connect "+host.getSafeString() @@ -890,7 +890,7 @@ private boolean queueRunScripts(){ ", verify password-less ssh works with the selected keys" ) ); - stateLogger.info("shell name={} return error"); + stateLogger.info("shell name={} return error", name); shell.close(); return false; } @@ -914,10 +914,13 @@ private boolean queueRunScripts(){ try{ rtrn = f.get(); } catch (InterruptedException e){ + stateLogger.error("InterruptedException", e); e.printStackTrace(); } catch (Exception e ){ + stateLogger.error("Exception", e); e.printStackTrace(); } + stateLogger.info("rtrn {}", rtrn); return rtrn; }).collect(Collectors.reducing(Boolean::logicalAnd)).get(); } catch (InterruptedException e){