Skip to content

Commit

Permalink
print isSecure
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Bitkov committed Dec 10, 2023
1 parent 27f12d5 commit 94be7b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,11 @@ func (d *Driver) Topic() topic.Client {
// String returns string representation of Driver
func (d *Driver) String() string {
return fmt.Sprintf(
"Driver{User: %s, Endpoint: %s, Database: %s, IsSecure }",
"Driver{User: %s, Endpoint: %s, Database: %s, IsSecure %t}",
d.userInfo.User,
d.config.Endpoint(),
d.config.Database(),
d.config.Secure(),
)
}

Expand Down

0 comments on commit 94be7b0

Please sign in to comment.