mirror of
https://github.com/bettercap/bettercap
synced 2025-08-19 04:59:25 -07:00
Removed debug log
This commit is contained in:
parent
17d931a074
commit
bad9b41918
1 changed files with 0 additions and 1 deletions
|
@ -258,7 +258,6 @@ func _searchForCap(path string, tree map[string][]string, recursive bool, prefix
|
||||||
|
|
||||||
for _, subF := range subFiles {
|
for _, subF := range subFiles {
|
||||||
if strings.HasSuffix(subF.Name(), ".cap") {
|
if strings.HasSuffix(subF.Name(), ".cap") {
|
||||||
fmt.Println(path + strings.Replace(subF.Name(), ".cap", "", -1))
|
|
||||||
tree[strings.TrimPrefix(path, prefix)+strings.Replace(subF.Name(), ".cap", "", -1)] = []string{}
|
tree[strings.TrimPrefix(path, prefix)+strings.Replace(subF.Name(), ".cap", "", -1)] = []string{}
|
||||||
} else if subF.IsDir() && recursive {
|
} else if subF.IsDir() && recursive {
|
||||||
_searchForCap(path+subF.Name()+"/", tree, true, prefix)
|
_searchForCap(path+subF.Name()+"/", tree, true, prefix)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue