Skip to content

Commit f658fe9

Browse files
committed
minor logging fix
1 parent b9c255d commit f658fe9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operator/src/main/java/oracle/kubernetes/operator/DomainProcessorImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ public void onThrowable(Packet packet, Throwable throwable) {
843843
DomainPresenceInfo existing = getExistingDomainPresenceInfo(ns, domainUID);
844844
if (existing != null) {
845845
int failureCount = existing.incrementAndGetFailureCount();
846-
LOGGER.finer(
846+
LOGGER.fine(
847847
"Failure count for DomainPresenceInfo: " + existing + " is now: " + failureCount);
848848
if (failureCount > DomainPresence.getDomainPresenceFailureRetryMaxCount()) {
849849
LOGGER.warning(

0 commit comments

Comments
 (0)