Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #977 from SoftlySplinter/1972-jvmserver-logs
Browse files Browse the repository at this point in the history
Ensure JVM server logs are saved.
  • Loading branch information
techcobweb authored Aug 15, 2024
2 parents 6c55af7 + 4739dd1 commit b48e941
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

description = 'Galasa CICS/TS Resource Manager'

version = '0.34.0'
version = '0.37.0'

dependencies {
api project (':galasa-managers-cicsts-parent:dev.galasa.cicsts.manager')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -918,21 +918,13 @@ public void saveToResultsArchive() throws CicsJvmserverResourceException {

@Override
public void saveToResultsArchive(String rasPath) throws CicsJvmserverResourceException {
if (this.jvmprofile != null) {
this.jvmprofile.saveToResultsArchive(rasPath);
}
if (this.jvmLogLog != null) {
this.jvmLogLog.saveToResultsArchive(rasPath);
}
if (this.stdOutLog != null) {
this.stdOutLog.saveToResultsArchive(rasPath);
}
if (this.stdErrLog != null) {
this.stdErrLog.saveToResultsArchive(rasPath);
}
if (this.jvmTraceLog != null) {
this.jvmTraceLog.saveToResultsArchive(rasPath);
}
getJvmprofile().saveToResultsArchive(rasPath);

getJvmLog().saveToResultsArchive(rasPath);
getStdOut().saveToResultsArchive(rasPath);
getStdErr().saveToResultsArchive(rasPath);
getJvmTrace().saveToResultsArchive(rasPath);

saveDiagnosticsToResultsArchive(rasPath);
saveJavaLogsToResultsArchive(rasPath);
if (isLiberty()) {
Expand Down

0 comments on commit b48e941

Please sign in to comment.