feat: remove print BuildFromFilePath

removes the print of (path, err) in function BuildFromFilePath
This commit is contained in:
Vincent 2016-11-04 15:32:51 -07:00 committed by Matt Joiner
parent dc7428db54
commit 7d327905fe
1 changed files with 0 additions and 1 deletions

View File

@ -41,7 +41,6 @@ func (info *Info) BuildFromFilePath(root string) (err error) {
return nil
}
relPath, err := filepath.Rel(root, path)
log.Println(relPath, err)
if err != nil {
return fmt.Errorf("error getting relative path: %s", err)
}