remove errant debugging line

This commit is contained in:
Travis 2017-04-06 23:22:31 -05:00
parent cebca697b1
commit d99edc2eef

View file

@ -159,7 +159,6 @@ func (c *Client) CreateDB(ctx context.Context, db string, opt DBOptions) error {
case http.StatusOK:
return nil // ok
case http.StatusConflict:
fmt.Println("ErrDatabaseExists: 1")
return ErrDatabaseExists
default:
return errors.New(string(body))