Fix typo in sql log

Signed-off-by: Julien Vey <vey.julien@gmail.com>
This commit is contained in:
Julien Vey 2020-07-10 14:28:13 +02:00
parent ec1ac6dbc8
commit 84c34afa22

View File

@ -50,7 +50,7 @@ func (p *pgsql) Name() string {
// String ...
func (p *pgsql) String() string {
return fmt.Sprintf("type-%s host-%s port-%s databse-%s sslmode-%q",
return fmt.Sprintf("type-%s host-%s port-%s database-%s sslmode-%q",
p.Name(), p.host, p.port, p.database, p.sslmode)
}