Skip to content

Commit 96a0906

Browse files
committed
- improve log message
1 parent a8d3c88 commit 96a0906

File tree

1 file changed

+1
-1
lines changed
  • operator-framework/src/main/java/com/github/containersolutions/operator/processing

1 file changed

+1
-1
lines changed

operator-framework/src/main/java/com/github/containersolutions/operator/processing/EventDispatcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public EventDispatcher(ResourceController controller,
3838
public void handleEvent(CustomResourceEvent event) {
3939
Watcher.Action action = event.getAction();
4040
CustomResource resource = event.getResource();
41-
log.info("Handling event {} for resource {}", action, resource.getMetadata());
41+
log.info("Handling {} event for resource {}", action, resource.getMetadata());
4242
if (Watcher.Action.ERROR == action) {
4343
log.error("Received error for resource: {}", resource.getMetadata().getName());
4444
return;

0 commit comments

Comments
 (0)