You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/11/26 07:16:03 UTC

[camel-kafka-connector-examples] branch master updated: Fixed a typo in Log class name for ssh source example

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-kafka-connector-examples.git


The following commit(s) were added to refs/heads/master by this push:
     new e7b82da  Fixed a typo in Log class name for ssh source example
e7b82da is described below

commit e7b82da6bdd7470982b59ef714eef16e8fd05cdb
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 26 08:15:48 2020 +0100

    Fixed a typo in Log class name for ssh source example
---
 ssh/ssh-source/README.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ssh/ssh-source/README.adoc b/ssh/ssh-source/README.adoc
index d01348b..bf9eb7b 100644
--- a/ssh/ssh-source/README.adoc
+++ b/ssh/ssh-source/README.adoc
@@ -118,7 +118,7 @@ public class SshTransforms <R extends ConnectRecord<R>> implements Transformatio
             .define(FIELD_KEY_CONFIG, ConfigDef.Type.STRING, null, ConfigDef.Importance.MEDIUM,
                     "Transforms String-based content from Kafka into a map");
 
-    private static final Logger LOG = LoggerFactory.getLogger(Pippo.class);
+    private static final Logger LOG = LoggerFactory.getLogger(SshTransforms.class);
 
     @Override
     public R apply(R r) {