We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e224d4 commit 2ce7703Copy full SHA for 2ce7703
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ConfigurationService.java
@@ -193,7 +193,11 @@ default Optional<InformerStoppedHandler> getInformerStoppedHandler() {
193
log.error("Fatal error in informer: {}. Stopping the operator", informer, ex);
194
System.exit(1);
195
} else {
196
- log.debug("Informer stopped: {}. Error: {}", informer, ex);
+ log.debug(
197
+ "Informer stopped: {}. Has synced: {}, Error: {}. This can happen as a result of " +
198
+ "stopping the controller, or due to an error on startup." +
199
+ "See also stopOnInformerErrorDuringStartup configuration.",
200
+ informer, informer.hasSynced(), ex);
201
}
202
});
203
0 commit comments