@@ -167,7 +167,7 @@ public void verifyAdminServerExternalService(String username, String password) t
167
167
// logger.info("Inside verifyAdminServerExternalService");
168
168
String nodePortHost = TestUtils .getHostName ();
169
169
String nodePort = getNodePort ();
170
- logger .fine ("nodePortHost " + nodePortHost + " nodePort " + nodePort );
170
+ logger .info ("nodePortHost " + nodePortHost + " nodePort " + nodePort );
171
171
172
172
StringBuffer cmd = new StringBuffer ();
173
173
cmd .append ("curl --silent --show-error --noproxy " )
@@ -182,14 +182,14 @@ public void verifyAdminServerExternalService(String username, String password) t
182
182
.append (":" )
183
183
.append (password )
184
184
.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 );
186
186
ExecResult result = ExecCommand .exec (cmd .toString ());
187
187
if (result .exitValue () != 0 ) {
188
188
throw new RuntimeException (
189
189
"FAILURE: command " + cmd + " failed, returned " + result .stderr ());
190
190
}
191
191
String output = result .stdout ().trim ();
192
- logger .fine ("output " + output );
192
+ logger .info ("output " + output );
193
193
if (!output .equals ("200" )) {
194
194
throw new RuntimeException (
195
195
"FAILURE: accessing admin server REST endpoint did not return 200 status code, "
0 commit comments