You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2022/08/09 08:15:47 UTC

[plc4x] branch develop updated: fix(plc4go/cbus): fixed vet error

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

sruehl 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 758e078e1 fix(plc4go/cbus): fixed vet error
758e078e1 is described below

commit 758e078e113e9fb27908848698757ffabc761521
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Tue Aug 9 10:15:40 2022 +0200

    fix(plc4go/cbus): fixed vet error
---
 plc4go/internal/cbus/Reader.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plc4go/internal/cbus/Reader.go b/plc4go/internal/cbus/Reader.go
index 3477b107e..ecbfbc4d4 100644
--- a/plc4go/internal/cbus/Reader.go
+++ b/plc4go/internal/cbus/Reader.go
@@ -149,7 +149,7 @@ func (m *Reader) Read(readRequest model.PlcReadRequest) <-chan model.PlcReadRequ
 							default:
 								panic("Every code should be mapped here")
 							}
-							log.Trace().Msgf("Was no success %s:%s", fieldNameCopy, responseCode)
+							log.Trace().Msgf("Was no success %s:%v", fieldNameCopy, responseCode)
 							addResponseCode(fieldNameCopy, responseCode)
 							requestWasOk <- true
 							return transaction.EndRequest()