Remove debug println

This commit is contained in:
Neil Alexander 2019-05-19 22:03:20 +01:00
parent d575b83ec1
commit e9e2d7bc6f
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -396,7 +396,7 @@ func (a *AdminSocket) handleRequest(conn net.Conn) {
// Decode the input
if err := decoder.Decode(&recv); err != nil {
// fmt.Println("Admin socket JSON decode error:", err)
a.log.Debugln("Admin socket JSON decode error:", err)
return
}
@ -412,8 +412,6 @@ func (a *AdminSocket) handleRequest(conn net.Conn) {
n := strings.ToLower(recv["request"].(string))
if h, ok := a.handlers[strings.ToLower(n)]; ok {
fmt.Println("HANDLER FOUND", n, h)
// Check that we have all the required arguments
for _, arg := range h.args {
// An argument in [square brackets] is optional and not required,