Skip to content

Commit 94be7b0

Browse files
author
Alex Bitkov
committed
print isSecure
1 parent 27f12d5 commit 94be7b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

driver.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,11 @@ func (d *Driver) Topic() topic.Client {
214214
// String returns string representation of Driver
215215
func (d *Driver) String() string {
216216
return fmt.Sprintf(
217-
"Driver{User: %s, Endpoint: %s, Database: %s, IsSecure }",
217+
"Driver{User: %s, Endpoint: %s, Database: %s, IsSecure %t}",
218218
d.userInfo.User,
219219
d.config.Endpoint(),
220220
d.config.Database(),
221+
d.config.Secure(),
221222
)
222223
}
223224

0 commit comments

Comments
 (0)