Skip to content

Commit

Permalink
makefile color regression
Browse files Browse the repository at this point in the history
	Makefile color code regression
	remove ParseDSN debug log
  • Loading branch information
martianzhang committed Jan 16, 2019
1 parent 6263e41 commit b1860bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Makefile
Expand Up @@ -20,10 +20,10 @@ COMMIT_VERSION=`git rev-parse HEAD`
# colors compatible setting
COLOR_ENABLE=$(shell tput colors > /dev/null; echo $$?)
ifeq "$(COLOR_ENABLE)" "0"
CRED=$(shell printf "\001\033[91m\002")
CGREEN=$(shell printf "\001\033[92m\002")
CYELLOW=$(shell printf "\001\033[93m\002")
CEND=$(shell printf "\001\033[0m\002")
CRED=$(shell printf "\033[91m")
CGREEN=$(shell printf "\033[92m")
CYELLOW=$(shell printf "\033[93m")
CEND=$(shell printf "\033[0m")
endif

# Add mysql version for testing `MYSQL_RELEASE=percona MYSQL_VERSION=5.7 make docker`
Expand Down
2 changes: 1 addition & 1 deletion common/config.go
Expand Up @@ -426,7 +426,7 @@ func parseDSN(odbc string, d *Dsn) *Dsn {
func ParseDSN(odbc string, d *Dsn) *Dsn {
cfg, err := mysql.ParseDSN(odbc)
if err != nil {
Log.Debug("go-sql-driver/mysql.ParseDSN Error: %s, DSN: %s, try to use old version parseDSN", err.Error(), odbc)
// Log.Debug("go-sql-driver/mysql.ParseDSN Error: %s, DSN: %s, try to use old version parseDSN", err.Error(), odbc)
return parseDSN(odbc, d)
}
return newDSN(cfg)
Expand Down

0 comments on commit b1860bb

Please sign in to comment.