chore: remove logs

This commit is contained in:
2025-04-20 13:53:24 +02:00
parent 59f7de3d1a
commit 1481cd38ba

View File

@ -1,7 +1,6 @@
package server
import (
"log"
"net"
"sync"
@ -41,7 +40,6 @@ func (s *Server) Start() error {
s.mu.Unlock()
for s.IsRunning() {
log.Println("DEBUG:", "Waiting for new connection to accept")
conn, err := ln.Accept()
if err != nil {
if !s.IsRunning() {
@ -55,8 +53,6 @@ func (s *Server) Start() error {
}
}
log.Println("DEBUG:", "Finished listening for connections")
s.mu.Lock()
s.Running = false
s.listener = nil