Skip to content

Commit 1457809

Browse files
committed
GH-1291 Edit log message for when function can not be located amongsr existing function registrations
Resolves #1291
1 parent 5d203bc commit 1457809

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/SimpleFunctionRegistry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ private FunctionInvocationWrapper compose(Class<?> type, String functionDefiniti
302302
if (function == null) {
303303
if (logger.isDebugEnabled()) {
304304
logger.debug("Failed to locate function '" + functionName + "' for function definition '"
305-
+ functionDefinition + "'. Returning null.");
305+
+ functionDefinition + " amongst existing function registrations. Will check with the bean factory");
306306
}
307307
return null;
308308
}

0 commit comments

Comments
 (0)