소스 검색

delete print statement

xormplus 7 년 전
부모
커밋
2eecae3b72
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      sqlmap.go

+ 1 - 2
sqlmap.go

@@ -5,7 +5,6 @@ import (
 	"bytes"
 	"encoding/json"
 	"encoding/xml"
-	"fmt"
 	"io/ioutil"
 	"os"
 	"strings"
@@ -57,7 +56,7 @@ func (sqlMap *SqlMap) walkFunc(path string, info os.FileInfo, err error) error {
 func (sqlMap *SqlMap) paresSql(filepath string) error {
 
 	content, err := ioutil.ReadFile(filepath)
-	fmt.Println("filepath:", filepath)
+
 	if err != nil {
 		return err
 	}