mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
Remove debug print messages
This commit is contained in:
parent
ca42de24ba
commit
39b18a1539
1 changed files with 0 additions and 11 deletions
|
@ -15,7 +15,6 @@
|
|||
package rules
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"go/ast"
|
||||
|
||||
gas "github.com/GoASTScanner/gas/core"
|
||||
|
@ -29,16 +28,6 @@ type WeakRand struct {
|
|||
|
||||
func (w *WeakRand) Match(n ast.Node, c *gas.Context) (*gas.Issue, error) {
|
||||
if _, matched := gas.MatchCallByPackage(n, c, w.packagePath, w.funcName); matched {
|
||||
fmt.Println("Imported:")
|
||||
for k, v := range c.Imports.Imported {
|
||||
fmt.Printf("%s => %s\n", k, v)
|
||||
}
|
||||
fmt.Println("Aliased:")
|
||||
for k, v := range c.Imports.Aliased {
|
||||
fmt.Printf("%s => %s\n", k, v)
|
||||
}
|
||||
fmt.Println("----------------------------------------")
|
||||
|
||||
return gas.NewIssue(c, n, w.What, w.Severity, w.Confidence), nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue