This is an automated email from the ASF dual-hosted git repository. pascalschumacher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit c39f87cf98e560c184e65ab528941f99cf36c181 Author: Pascal Schumacher <pascalschumac...@gmx.net> AuthorDate: Sun May 31 09:12:57 2020 +0200 JdbcAggregationRepository: Add missing argument to log message. --- .../camel/processor/aggregate/jdbc/JdbcAggregationRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java b/components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java index c96d0a1..a6655fa 100644 --- a/components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java +++ b/components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java @@ -168,7 +168,7 @@ public class JdbcAggregationRepository extends ServiceSupport implements Recover LOG.debug("Updating record with key {} and version {}", key, version); update(camelContext, correlationId, exchange, getRepositoryName(), version); } else { - LOG.debug("Inserting record with key {}"); + LOG.debug("Inserting record with key {}", key); insert(camelContext, correlationId, exchange, getRepositoryName(), 1L); }