You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2021/12/16 16:57:13 UTC

[plc4x] branch develop updated: fix: Changed the log level for Go Disconnect messages to trace

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

cdutz 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 9471ec7  fix: Changed the log level for Go Disconnect messages to trace
9471ec7 is described below

commit 9471ec7e24de14d0f8153f7779b4cab247e75557
Author: cdutz <ch...@c-ware.de>
AuthorDate: Thu Dec 16 17:57:05 2021 +0100

    fix: Changed the log level for Go Disconnect messages to trace
---
 plc4go/internal/plc4go/spi/default/DefaultCodec.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plc4go/internal/plc4go/spi/default/DefaultCodec.go b/plc4go/internal/plc4go/spi/default/DefaultCodec.go
index 055a0e6..d3d43ef 100644
--- a/plc4go/internal/plc4go/spi/default/DefaultCodec.go
+++ b/plc4go/internal/plc4go/spi/default/DefaultCodec.go
@@ -153,7 +153,7 @@ func (m *defaultCodec) Connect() error {
 }
 
 func (m *defaultCodec) Disconnect() error {
-	log.Info().Msg("Disconnecting")
+	log.Trace().Msg("Disconnecting")
 	m.running = false
 	return m.transportInstance.Close()
 }