Skip to content

Commit 9871ade

Browse files
authored
fix: wording (#725)
1 parent bd3ccbe commit 9871ade

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/EventProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public void handleEvent(Event event) {
102102
try {
103103
log.debug("Received event: {}", event);
104104
if (!this.running) {
105-
log.debug("Skipping event: {} because the event handler is shutting down", event);
105+
log.debug("Skipping event: {} because the event handler is not started", event);
106106
return;
107107
}
108108
final var resourceID = event.getRelatedCustomResourceID();

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/EventSourceManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void start() throws OperatorException {
6060
try {
6161
eventSource.start();
6262
} catch (Exception e) {
63-
log.warn("Error closing {} -> {}", eventSource, e);
63+
log.warn("Error starting {} -> {}", eventSource, e);
6464
}
6565
}
6666
} finally {

0 commit comments

Comments
 (0)