From 8ad3d2191b29e54b18b0df51e307dd23e1f09eeb Mon Sep 17 00:00:00 2001 From: Tristan SMAGGHE Date: Tue, 10 Dec 2024 10:27:07 +0100 Subject: [PATCH] fix(log): remove useless println --- xmlrpc.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/xmlrpc.go b/xmlrpc.go index e3b2da08..5c890ebb 100644 --- a/xmlrpc.go +++ b/xmlrpc.go @@ -3,7 +3,6 @@ package main import ( "crypto/sha1" //nolint:gosec "encoding/hex" - "fmt" "io" "io/ioutil" "net" @@ -189,7 +188,6 @@ func (p *XMLRPC) startHTTPServer(user string, password string, protocol string, continue } dir := filepath.Dir(filePath) - fmt.Println(dir) mux.Handle("/log/"+realName+"/", http.StripPrefix("/log/"+realName+"/", http.FileServer(http.Dir(dir)))) }