You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by jf...@apache.org on 2019/05/15 14:07:13 UTC

[plc4x] branch develop updated: fixed typo in S7PlcConnection

This is an automated email from the ASF dual-hosted git repository.

jfeinauer pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 7f94d6c  fixed typo in S7PlcConnection
7f94d6c is described below

commit 7f94d6cc721eadc99d6115ed8cd6c9f040ac45ed
Author: Gunther Gruber <gg...@gmail.com>
AuthorDate: Wed May 15 14:58:39 2019 +0200

    fixed typo in S7PlcConnection
---
 .../main/java/org/apache/plc4x/java/s7/connection/S7PlcConnection.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plc4j/drivers/s7/src/main/java/org/apache/plc4x/java/s7/connection/S7PlcConnection.java b/plc4j/drivers/s7/src/main/java/org/apache/plc4x/java/s7/connection/S7PlcConnection.java
index 52ab5dd..18099e6 100644
--- a/plc4j/drivers/s7/src/main/java/org/apache/plc4x/java/s7/connection/S7PlcConnection.java
+++ b/plc4j/drivers/s7/src/main/java/org/apache/plc4x/java/s7/connection/S7PlcConnection.java
@@ -99,7 +99,7 @@ public class S7PlcConnection extends NettyPlcConnection implements PlcReader, Pl
     public S7PlcConnection(InetAddress address, int rack, int slot, String params) {
         this(new TcpSocketChannelFactory(address, ISO_ON_TCP_PORT), rack, slot, params);
 
-        logger.info("Setting up S7cConnection with: host-name {}, rack {}, slot {}, pdu-size {}, max-amq-caller {}, " +
+        logger.info("Setting up S7 Connection with: host-name {}, rack {}, slot {}, pdu-size {}, max-amq-caller {}, " +
                 "max-amq-callee {}", address.getHostAddress(), rack, slot,
             paramPduSize, paramMaxAmqCaller, paramMaxAmqCallee);
     }