Skip to content

Commit 1a220a6

Browse files
Update Domain.java
1 parent 957a9db commit 1a220a6

File tree

1 file changed

+3
-3
lines changed
  • integration-tests/src/test/java/oracle/kubernetes/operator/utils

1 file changed

+3
-3
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/utils/Domain.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public void verifyAdminServerExternalService(String username, String password) t
167167
// logger.info("Inside verifyAdminServerExternalService");
168168
String nodePortHost = TestUtils.getHostName();
169169
String nodePort = getNodePort();
170-
logger.fine("nodePortHost " + nodePortHost + " nodePort " + nodePort);
170+
logger.info("nodePortHost " + nodePortHost + " nodePort " + nodePort);
171171

172172
StringBuffer cmd = new StringBuffer();
173173
cmd.append("curl --silent --show-error --noproxy ")
@@ -182,14 +182,14 @@ public void verifyAdminServerExternalService(String username, String password) t
182182
.append(":")
183183
.append(password)
184184
.append(" -H X-Requested-By:Integration-Test --write-out %{http_code} -o /dev/null");
185-
logger.fine("cmd for curl " + cmd);
185+
logger.info("cmd for curl " + cmd);
186186
ExecResult result = ExecCommand.exec(cmd.toString());
187187
if (result.exitValue() != 0) {
188188
throw new RuntimeException(
189189
"FAILURE: command " + cmd + " failed, returned " + result.stderr());
190190
}
191191
String output = result.stdout().trim();
192-
logger.fine("output " + output);
192+
logger.info("output " + output);
193193
if (!output.equals("200")) {
194194
throw new RuntimeException(
195195
"FAILURE: accessing admin server REST endpoint did not return 200 status code, "

0 commit comments

Comments
 (0)