This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new a58c61f Fixed typo in name of class displayed on log new 278d16b Merge pull request #3722 from josetesan/patch-1 a58c61f is described below commit a58c61f069c1341051a495bdd6d9cf07d8fbfaf9 Author: Jose Luis <mual...@gmail.com> AuthorDate: Wed Apr 8 20:55:25 2020 +0200 Fixed typo in name of class displayed on log --- .../src/main/java/org/apache/camel/support/LRUCacheFactory.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/camel-support/src/main/java/org/apache/camel/support/LRUCacheFactory.java b/core/camel-support/src/main/java/org/apache/camel/support/LRUCacheFactory.java index 2fc70c6..21182bf 100644 --- a/core/camel-support/src/main/java/org/apache/camel/support/LRUCacheFactory.java +++ b/core/camel-support/src/main/java/org/apache/camel/support/LRUCacheFactory.java @@ -84,10 +84,10 @@ public abstract class LRUCacheFactory { if (clazzName != null) { LOG.trace("Loading class: {}", clazzName); Class<?> clazz = classLoader.loadClass(clazzName); - LOG.trace("Creating LURCacheFactory instance from class: {}", clazzName); + LOG.trace("Creating LRUCacheFactory instance from class: {}", clazzName); Object factory = clazz.getDeclaredConstructor().newInstance(); - LOG.trace("Created LURCacheFactory instance: {}", factory); - LOG.info("Detected and using LURCacheFactory: {}", factory); + LOG.trace("Created LRUCacheFactory instance: {}", factory); + LOG.info("Detected and using LRUCacheFactory: {}", factory); return (LRUCacheFactory) factory; } }