fix: Removes debug print left over in server code.

This commit is contained in:
imterah 2024-10-25 12:17:22 -04:00
parent 8a0974447a
commit 3a58a12033
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37

View file

@ -1,7 +1,6 @@
package server
import (
"fmt"
"net"
core "git.greysoh.dev/imterah/bismuthd/commons"
@ -192,7 +191,6 @@ func (bismuth BismuthServer) HandleProxy(conn net.Conn) error {
totalPacketContents[0] = core.GetTrustedDomains
for index, trustedDomain := range bismuth.TrustedDomains {
fmt.Println("building trusted domains")
totalPacketContents = append(totalPacketContents, []byte(trustedDomain)...)
if index+1 != len(bismuth.TrustedDomains) {