mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 01:32:13 +08:00
Add check for Env before log
This commit is contained in:
@ -3,6 +3,7 @@ package mssql
|
|||||||
import (
|
import (
|
||||||
"database/sql"
|
"database/sql"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/grafana/grafana/pkg/setting"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
_ "github.com/denisenkom/go-mssqldb"
|
_ "github.com/denisenkom/go-mssqldb"
|
||||||
@ -24,7 +25,9 @@ func newMssqlQueryEndpoint(datasource *models.DataSource) (tsdb.TsdbQueryEndpoin
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
logger.Debug("getEngine", "connection", cnnstr)
|
if setting.Env == setting.DEV {
|
||||||
|
logger.Debug("getEngine", "connection", cnnstr)
|
||||||
|
}
|
||||||
|
|
||||||
config := tsdb.SqlQueryEndpointConfiguration{
|
config := tsdb.SqlQueryEndpointConfiguration{
|
||||||
DriverName: "mssql",
|
DriverName: "mssql",
|
||||||
|
@ -3,6 +3,7 @@ package mysql
|
|||||||
import (
|
import (
|
||||||
"database/sql"
|
"database/sql"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/grafana/grafana/pkg/setting"
|
||||||
"reflect"
|
"reflect"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
@ -44,7 +45,9 @@ func newMysqlQueryEndpoint(datasource *models.DataSource) (tsdb.TsdbQueryEndpoin
|
|||||||
cnnstr += "&tls=" + tlsConfigString
|
cnnstr += "&tls=" + tlsConfigString
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.Debug("getEngine", "connection", cnnstr)
|
if setting.Env == setting.DEV {
|
||||||
|
logger.Debug("getEngine", "connection", cnnstr)
|
||||||
|
}
|
||||||
|
|
||||||
config := tsdb.SqlQueryEndpointConfiguration{
|
config := tsdb.SqlQueryEndpointConfiguration{
|
||||||
DriverName: "mysql",
|
DriverName: "mysql",
|
||||||
|
@ -2,6 +2,7 @@ package postgres
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"database/sql"
|
"database/sql"
|
||||||
|
"github.com/grafana/grafana/pkg/setting"
|
||||||
"net/url"
|
"net/url"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
@ -19,7 +20,9 @@ func newPostgresQueryEndpoint(datasource *models.DataSource) (tsdb.TsdbQueryEndp
|
|||||||
logger := log.New("tsdb.postgres")
|
logger := log.New("tsdb.postgres")
|
||||||
|
|
||||||
cnnstr := generateConnectionString(datasource)
|
cnnstr := generateConnectionString(datasource)
|
||||||
logger.Debug("getEngine", "connection", cnnstr)
|
if setting.Env == setting.DEV {
|
||||||
|
logger.Debug("getEngine", "connection", cnnstr)
|
||||||
|
}
|
||||||
|
|
||||||
config := tsdb.SqlQueryEndpointConfiguration{
|
config := tsdb.SqlQueryEndpointConfiguration{
|
||||||
DriverName: "postgres",
|
DriverName: "postgres",
|
||||||
|
Reference in New Issue
Block a user