Skip to content

Commit 6acac66

Browse files
authored
Merge pull request #175 from oracle/summary-header-branch
Add tool version to summary header in wrap up messages
2 parents 6af10a0 + 7180225 commit 6acac66

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

core/src/main/java/oracle/weblogic/deploy/logging/SummaryHandler.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
import oracle.weblogic.deploy.util.WLSDeployContext;
1919
import oracle.weblogic.deploy.util.WLSDeployExit;
20+
import oracle.weblogic.deploy.util.WebLogicDeployToolingVersion;
2021

2122

2223
/**
@@ -135,7 +136,7 @@ private void addLevelHandler(Level level) {
135136

136137
void summaryHead(Handler handler) {
137138
handler.publish(getLogRecord("WLSDPLY-21003", context.getProgramName(),
138-
context.getVersion(), context.getWlstMode()));
139+
WebLogicDeployToolingVersion.getVersion(), context.getVersion(), context.getWlstMode()));
139140
}
140141

141142
void summaryTail(Handler handler) {

core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1229,4 +1229,4 @@ WLSDPLY-20024={0} failed to persist the model to the archive file {1}: {2}
12291229
WLSDPLY-21000={0} Messages:
12301230
WLSDPLY-21001= {0} total : {1}
12311231
WLSDPLY-21002= Total: {0}
1232-
WLSDPLY-21003=Issue Log for {0} version {1} {2} mode:
1232+
WLSDPLY-21003=Issue Log for {0} version {1} running weblogic version {2} {3} mode:

0 commit comments

Comments
 (0)