Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit da90d33

Browse files
authored
fix: logging port (#55)
1 parent fb871b3 commit da90d33

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/main/java/io/javaoperatorsdk/jenvtest/process/EtcdProcess.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public int startEtcd() {
5151
}
5252
return null;
5353
});
54-
log.debug("etcd started");
54+
log.debug("etcd started on port: {}", port);
5555
return port;
5656
} catch (IOException e) {
5757
throw new JenvtestException(e);

core/src/main/java/io/javaoperatorsdk/jenvtest/process/KubeAPIServerProcess.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public int startApiServer(int etcdPort) {
5656
}
5757
return null;
5858
});
59-
log.debug("API Server started");
59+
log.debug("Kube API Server started on port: {}", apiServerPort);
6060
return apiServerPort;
6161
} catch (IOException e) {
6262
throw new JenvtestException(e);

0 commit comments

Comments
 (0)