diff --git a/src/agent/apikey.go b/src/agent/apikey.go index 4ddad57..24e7099 100644 --- a/src/agent/apikey.go +++ b/src/agent/apikey.go @@ -1,7 +1,6 @@ package agent import ( - "fmt" "net/http" "strings" ) @@ -21,7 +20,6 @@ func (a *keyChecker) check(c *client, r *http.Request) bool { apikey = r.RequestURI[i+len("api_key="):] } } - fmt.Printf("apikey = %s\n", apikey) if len(apikey) > 0 && strings.HasPrefix(apikey, "simpletest2025_") { c.setApiKey(apikey) return true