diff --git a/session.go b/session.go index bd647de6..75570fcd 100644 --- a/session.go +++ b/session.go @@ -2475,7 +2475,7 @@ func (session *Session) innerInsert(bean interface{}) (int64, error) { } colPlaces := strings.Repeat("?, ", len(colNames)) - fmt.Println(colNames, args) + //fmt.Println(colNames, args) colPlaces = colPlaces[0 : len(colPlaces)-2] sqlStr := fmt.Sprintf("INSERT INTO %v%v%v (%v%v%v) VALUES (%v)",