Skip to content

Commit

Permalink
feat(plc4go/spi): test transport should now properly output the url
Browse files Browse the repository at this point in the history
  • Loading branch information
sruehl committed Jun 14, 2023
1 parent 33233da commit b8c4bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plc4go/spi/transports/test/Transport.go
Expand Up @@ -60,7 +60,7 @@ func (m *Transport) CreateTransportInstance(transportUrl url.URL, options map[st
return nil, errors.New("test transport failed on purpose")
}
if preregisteredInstance, ok := m.preregisteredInstances[transportUrl]; ok {
m.log.Trace().Msgf("Returning pre registered instance for %v", transportUrl)
m.log.Trace().Msgf("Returning pre registered instance for %s", &transportUrl)
return preregisteredInstance, nil
}
m.log.Trace().Msg("create transport instance")
Expand Down

0 comments on commit b8c4bf2

Please sign in to comment.