Fix debug connection string output

This commit is contained in:
Dan Sosedoff 2014-12-17 21:59:43 -06:00
parent 7859870646
commit dada1ab0c1

View File

@ -26,7 +26,7 @@ func NewClient() (*Client, error) {
str, err := buildConnectionString(options) str, err := buildConnectionString(options)
if options.Debug { if options.Debug {
fmt.Println("Creating a new client with: %s", str) fmt.Println("Creating a new client with:", str)
} }
if err != nil { if err != nil {