You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sm...@apache.org on 2015/10/15 16:02:23 UTC

airavata git commit: Adding a lot statement to printout the job submisison details.

Repository: airavata
Updated Branches:
  refs/heads/airavata-0.15-release-branch 9e2f85940 -> 5df32a99b


Adding a lot statement to printout the job submisison details.


Project: http://git-wip-us.apache.org/repos/asf/airavata/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/5df32a99
Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/5df32a99
Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/5df32a99

Branch: refs/heads/airavata-0.15-release-branch
Commit: 5df32a99b513f7d235e5dd27269731377288db14
Parents: 9e2f859
Author: Suresh Marru <sm...@apache.org>
Authored: Thu Oct 15 10:02:17 2015 -0400
Committer: Suresh Marru <sm...@apache.org>
Committed: Thu Oct 15 10:02:17 2015 -0400

----------------------------------------------------------------------
 .../org/apache/airavata/gsi/ssh/impl/GSISSHAbstractCluster.java     | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata/blob/5df32a99/tools/gsissh/src/main/java/org/apache/airavata/gsi/ssh/impl/GSISSHAbstractCluster.java
----------------------------------------------------------------------
diff --git a/tools/gsissh/src/main/java/org/apache/airavata/gsi/ssh/impl/GSISSHAbstractCluster.java b/tools/gsissh/src/main/java/org/apache/airavata/gsi/ssh/impl/GSISSHAbstractCluster.java
index f7b1b8b..fe5da9c 100644
--- a/tools/gsissh/src/main/java/org/apache/airavata/gsi/ssh/impl/GSISSHAbstractCluster.java
+++ b/tools/gsissh/src/main/java/org/apache/airavata/gsi/ssh/impl/GSISSHAbstractCluster.java
@@ -275,6 +275,7 @@ public class GSISSHAbstractCluster implements Cluster {
         // with the error thrown in qsub command
         //
         String outputifAvailable = getOutputifAvailable(standardOutReader,"Error reading output of job submission",jobManagerConfiguration.getBaseSubmitCommand());
+        log.info("Job Submission SSH Command Output: " + outputifAvailable);
         OutputParser outputParser = jobManagerConfiguration.getParser();
         return  outputParser.parseJobSubmission(outputifAvailable);
     }